http://zonun.i2p
I = Importer()
class Object:
def __init__(self, /, **attributes):
for name in attributes:
setattr(self, name, attributes[name])
def Namespace(body, /):
return Object(**body())
def Load_file(path):
with open(path, 'rb') as file:
return file.read()
@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,...