http://zonun.i2p
L = Library()
class Object:
def __init__(self, /, **attributes):
for name in attributes:
setattr(self, name, attributes[name])
def Namespace(body, /):
return Object(**body())
@Namespace
def Time():
Calendars = [
[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
[31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
]
def Encode_date(date, /):
cycles, days = divmod(date,...