diff --git a/voussoirkit/timetools.py b/voussoirkit/timetools.py new file mode 100644 index 0000000..a0c9bef --- /dev/null +++ b/voussoirkit/timetools.py @@ -0,0 +1,7 @@ +import datetime + +def now(): + return datetime.datetime.now(tz=datetime.timezone.utc) + +def now_local(): + return datetime.datetime.now().astimezone()