16 lines
316 B
Python
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)
|
|
|
|
# ----------------------------------------------------------------
|
|
|