time format to get timestamp with timezone in python code example
Example 1: python datetime now
import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax
Example 2: python datetime from timestamp utc
dt_object = datetime.fromtimestamp(timestamp)