Answers for "get current time in python in a specific timezone"

2

get local timezone python

import datetime

now = datetime.datetime.now()
local_now = now.astimezone()
local_tz = local_now.tzinfo
local_tzname = local_tz.tzname(local_now)
print(local_tzname)
Posted by: Guest on January-26-2021
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 "get current time in python in a specific timezone"

Python Answers by Framework

Browse Popular Code Answers by Language