Answers for "datetime.now in utc python"

2

python get utc time

from datetime import datetime

# time_in_utc variable will be the utc time 
time_in_utc = datetime.utcnow()

# If you want to make it more fancier:
formatted_time_in_utc = time_in_utc.strftime("%d/%m/%Y %H:%M:%S")
Posted by: Guest on June-26-2021
1

python datetime to utc

from datetime import timezone

timestamp = dt.replace(tzinfo=timezone.utc).timestamp()
Posted by: Guest on August-05-2020
-1

python datetime from timestamp utc

dt_object = datetime.fromtimestamp(timestamp)
Posted by: Guest on August-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language