meetling
meetling copied to clipboard
Track creation time of objects
Introduce Object.create_time which stores when an object was created. Display this for meetings.
Conversion between datetime and string:
# string -> datetime
datetime(*(int(x) for x in re.split(r'\D', create_time)[:-1]))
# datetime -> string
create_time.isoformat() + 'Z'