now()
Return the local time now with timezone awareness as enabled by this module
>>> now_local = now()>>> (now_local - datetime.datetime.now(datetime.timezone.utc)) < datetime.timedelta(seconds = 5) True >>> type(now_local.tzinfo) is TimeZoneInfo True