python time to timezone code example
Example 1: python time now other timezone
from datetime import datetime, timezone
utc_dt = datetime.now(timezone.utc)
dt = utc_dt.astimezone()
import pytz
tz = pytz.timezone('Europe/Berlin')
berlin_now = datetime.now(tz)
Example 2: get local timezone python
import datetime
now = datetime.datetime.now()
local_now = now.astimezone()
local_tz = local_now.tzinfo
local_tzname = local_tz.tzname(local_now)
print(local_tzname)
Example 3: python - oordinated universal time
from datetime import datetime, timezone
print(datetime.now())
print(datetime.now(timezone.utc))
Example 4: time python
import time
dir(time)
[..., 'localtime', 'mktime', 'sleep', 'sleep_ms', 'sleep_us', 'ticks_add', 'ticks_cpu', 'ticks_diff', 'ticks_ms', 'ticks_us', 'time']
secFromStart = time.time()