dec8/dtk/dt.py
2019-10-07 01:49:59 +02:00

16 lines
316 B
Python

#! /usr/bin/env python3
# encoding: utf-8
# ----------------------------------------------------------------
import datetime
import pytz
def now(tz_name="UTC"):
t = datetime.datetime.now()
tz = pytz.timezone(tz_name)
return tz.localize(t)
# ----------------------------------------------------------------