Python: Figure out local timezone
Posted
by Adam Matan
on Stack Overflow
See other posts from Stack Overflow
or by Adam Matan
Published on 2010-04-27T10:20:24Z
Indexed on
2010/04/27
10:23 UTC
Read the original article
Hit count: 351
I want to compare UTC timestamps from a log file with local timestamps. When creating the local datetime
object, I use something like:
>>> local_time=datetime.datetime(2010, 4, 27, 12, 0, 0, 0,
tzinfo=pytz.timezone('Israel'))
I want to find an automatic tool that would replace thetzinfo=pytz.timezone('Israel')
with the current local time zone.
Any ideas?
© Stack Overflow or respective owner