In a Python project I\'m working on, I\'d like to be able to get a \"human-readable\" timezone name of the form America/New_York, corresponding to the syste
# use tzlocal library
from tzlocal import get_localzone current_timezone = get_localzone() zone = current_timezone.zone print(zone)