Answers for "how to check timezone in python"

1

python time now other timezone

#as an aware datetime
from datetime import datetime, timezone

utc_dt = datetime.now(timezone.utc) # UTC time
dt = utc_dt.astimezone() # local time


#or from pytz database
import pytz

tz = pytz.timezone('Europe/Berlin')
berlin_now = datetime.now(tz)
Posted by: Guest on December-16-2020
0

how to get the time zones in python

The most prevalent library for timezones in python is pytz, which can be installed by:

pip install pytz
It allows you to manipulate times by assigning times to timezones using Olsen timezones (e.g. Europe/London).
Posted by: Guest on July-25-2021

Code answers related to "how to check timezone in python"

Python Answers by Framework

Browse Popular Code Answers by Language