datetime with utc timezone python code example
Example 1: datetime python timezone
import datetime
import pytz
my_date = datetime.datetime.now(pytz.timezone('US/Pacific'))
Example 2: python datetime from timestamp utc
dt_object = datetime.fromtimestamp(timestamp)