python utcnow code example
Example 1: datetime python
from datetime import datetime as d
date = d.now()
print(date.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: datetime python timezone
import datetime
import pytz
my_date = datetime.datetime.now(pytz.timezone('US/Pacific'))
Example 3: python datetime now
import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax
Example 4: python datetime from timestamp utc
dt_object = datetime.fromtimestamp(timestamp)