Skip to content

Instantly share code, notes, and snippets.

@pythonizame
Created December 10, 2014 03:45
Show Gist options
  • Save pythonizame/2b6d5dc2087634725e67 to your computer and use it in GitHub Desktop.
Save pythonizame/2b6d5dc2087634725e67 to your computer and use it in GitHub Desktop.
Enlistar timezone existentes
# -*- coding: utf-8 -*-
"""
Función para enlistar zonas horarias.
Consultar: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
requisito: pip install pytz
"""
from pytz import all_timezones
for tz in all_timezones:
print tz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment