How do I use timezones with a datetime object in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T00:55:00Z http://stackoverflow.com/feeds/question/117514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117514/how-do-i-use-timezones-with-a-datetime-object-in-python 2 How do I use timezones with a datetime object in python? jidar 2008-09-22T20:44:39Z 2009-10-01T15:24:07Z <p>How do I properly represent a different timezone in my timezone? The below example only works because I know that EDT is one hour ahead of me, so I can uncomment the subtraction of myTimeZone()</p> <pre><code>import datetime, re from datetime import tzinfo class myTimeZone(tzinfo): """docstring for myTimeZone""" def utfoffset(self, dt): return timedelta(hours=1) def myDateHandler(aDateString): """u'Sat, 6 Sep 2008 21:16:33 EDT'""" _my_date_pattern = re.compile(r'\w+\,\s+(\d+)\s+(\w+)\s+(\d+)\s+(\d+)\:(\d+)\:(\d+)') day, month, year, hour, minute, second = _my_date_pattern.search(aDateString).groups() month = [ 'JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC' ].index(month.upper()) + 1 dt = datetime.datetime( int(year), int(month), int(day), int(hour), int(minute), int(second) ) # dt = dt - datetime.timedelta(hours=1) # dt = dt - dt.tzinfo.utfoffset(myTimeZone()) return (dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, 0, 0, 0) def main(): print myDateHandler("Sat, 6 Sep 2008 21:16:33 EDT") if __name__ == '__main__': main() </code></pre> http://stackoverflow.com/questions/117514/how-do-i-use-timezones-with-a-datetime-object-in-python/117523#117523 1 Answer by Thomas Wouters for How do I use timezones with a datetime object in python? Thomas Wouters 2008-09-22T20:46:08Z 2008-09-22T20:46:08Z <p>The Python standard library doesn't contain timezone information, because unfortunately timezone data changes a lot faster than Python. You need a third-party module for this; the usual choice is <a href="http://pytz.sourceforge.net" rel="nofollow">pytz</a></p> http://stackoverflow.com/questions/117514/how-do-i-use-timezones-with-a-datetime-object-in-python/117615#117615 2 Answer by Armin Ronacher for How do I use timezones with a datetime object in python? Armin Ronacher 2008-09-22T20:59:40Z 2008-09-22T20:59:40Z <p>I recommend <code>babel</code> and <code>pytz</code> when working with timezones. Keep your internal datetime objects naive and in UTC and convert to your timezone for formatting only. The reason why you probably want naive objects (objects without timezone information) is that many libraries and database adapters have no idea about timezones.</p> <ul> <li><a href="http://babel.edgewall.org/" rel="nofollow">Babel</a></li> <li><a href="http://pytz.sourceforge.net/" rel="nofollow">pytz</a></li> </ul> http://stackoverflow.com/questions/117514/how-do-i-use-timezones-with-a-datetime-object-in-python/1504613#1504613 0 Answer by andy-shev for How do I use timezones with a datetime object in python? andy-shev 2009-10-01T15:24:07Z 2009-10-01T15:24:07Z <p>The main question is how to get local timezone. Until now I have no good solutions. Does anybody know?</p>