I understand how to convert a string to a datetime object, but what about a string that has a different time zone? for example "10/07/2011 04:22 CEST"
|
|
EST can mean two different timezones: European Summer Time, or Eastern Standard Time. So datetime strings such as If you are willing to just make a stab at a possibly correct answer, then
you can generate a mapping between abbreviations like
|
||||
|
|
|
You should be able to use strptime with a %Z in your format string, but be aware of this note from the Python documentation (http://docs.python.org/library/datetime.html#strftime-strptime-behavior): "%Z -- If tzname() returns None, %Z is replaced by an empty string. Otherwise %Z is replaced by the returned value, which must be a string. The full set of format codes supported varies across platforms, because Python calls the platform C library’s strftime() function, and platform variations are common." Can you put the timezone into offset form and use %z instead? |
|||||||||||
|