python time to age part 2, timezones - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:02:56Z http://stackoverflow.com/feeds/question/526406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones 1 python time to age part 2, timezones Ashy 2009-02-08T21:12:03Z 2009-03-12T14:48:06Z <p>Following on from my previous question: <a href="http://stackoverflow.com/questions/508727/python-time-to-age">http://stackoverflow.com/questions/508727/python-time-to-age</a></p> <p>I have now come across a problem regarding the timezone, turns out that its not always going to be "+0200". So when strptime tries to parse it as such, it throws up an exception.</p> <p>I thought about just chopping off the +0200 with [:-6] or whatever but is there a real way to do this with strptime?</p> <p>I am using Python 2.5.2 if it matters.</p> <pre><code>&gt;&gt;&gt; from datetime import datetime &gt;&gt;&gt; fmt = "%a, %d %b %Y %H:%M:%S +0200" &gt;&gt;&gt; datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200", fmt) datetime.datetime(2008, 7, 22, 8, 17, 41) &gt;&gt;&gt; datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0300", fmt) Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/usr/lib/python2.5/_strptime.py", line 330, in strptime (data_string, format)) ValueError: time data did not match format: data=Tue, 22 Jul 2008 08:17:41 +0300 fmt=%a, %d %b %Y %H:%M:%S +0200 </code></pre> http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones/526436#526436 1 Answer by David for python time to age part 2, timezones David 2009-02-08T21:25:06Z 2009-02-08T21:25:06Z <p>As far as I know, <code>strptime()</code> doesn't recognize numeric time zone codes. If you know that the string is always going to end with a time zone specification of that form (+ or - followed by 4 digits), just chopping it off and parsing it manually seems like a perfectly reasonable thing to do.</p> http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones/526450#526450 2 Answer by gs for python time to age part 2, timezones gs 2009-02-08T21:30:13Z 2009-02-09T12:33:43Z <blockquote> <p>New in version 2.6.</p> <p>For a naive object, the %z and %Z format codes are replaced by empty strings.</p> </blockquote> <p>Looks like this is implemented only in >= 2.6, I think you have to manually parse it.</p> <p>I can't see another solution than to remove the time zone data.:</p> <pre><code>from datetime import timedelta,datetime try: offset = int("Tue, 22 Jul 2008 08:17:41 +0300"[-5:]) catch: print "Error" delta = timedelta(hours = offset / 100) fmt = "%a, %d %b %Y %H:%M:%S" time = datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200"[:-6], fmt) time -= delta </code></pre> http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones/526643#526643 1 Answer by John Fouhy for python time to age part 2, timezones John Fouhy 2009-02-08T23:23:29Z 2009-02-08T23:23:29Z <p>It seems that %Z corresponds to time zone names, not offsets.</p> <p>For example, given:</p> <pre><code>&gt;&gt;&gt; format = '%a, %d %b %Y %H:%M:%S %Z' </code></pre> <p>I can parse:</p> <pre><code>&gt;&gt;&gt; datetime.datetime.strptime('Tue, 22 Jul 2008 08:17:41 GMT', format) datetime.datetime(2008, 7, 22, 8, 17, 41) </code></pre> <p>Although it seems that it doesn't do anything with the time zone, merely observing that it exists and is valid:</p> <pre><code>&gt;&gt;&gt; datetime.datetime.strptime('Tue, 22 Jul 2008 08:17:41 NZDT', format) datetime.datetime(2008, 7, 22, 8, 17, 41) </code></pre> <p>I suppose if you wished, you could locate a mapping of offsets to names, convert your input, and then parse it. It might be simpler to just truncate your input, though.</p> http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones/526976#526976 4 Answer by bobince for python time to age part 2, timezones bobince 2009-02-09T02:22:49Z 2009-02-09T12:29:19Z <blockquote> <p>is there a real way to do this with strptime?</p> </blockquote> <p>No, but since your format appears to be an RFC822-family date, you can read it much more easily using the <a href="http://docs.python.org/library/email.util.html#email.utils.parsedate_tz" rel="nofollow">email</a> library instead:</p> <pre><code>&gt;&gt;&gt; import email.utils &gt;&gt;&gt; email.utils.parsedate_tz('Tue, 22 Jul 2008 08:17:41 +0200') (2008, 7, 22, 8, 17, 41, 0, 1, 0, 7200) </code></pre> <p>(7200 = timezone offset from UTC in seconds)</p> http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones/638973#638973 0 Answer by Miuler for python time to age part 2, timezones Miuler 2009-03-12T14:48:06Z 2009-03-12T14:48:06Z <p>Se puede utilizar la librería datetime que es muy útil:</p> <pre><code>from datetime import datetime from dateutil.parser import parse dt = parse("Tue, 22 Jul 2008 08:17:41 +0200") ## datetime.datetime(2008, 7, 22, 8, 17, 41, tzinfo=tzoffset(None, 7200)) &lt;- dt print dt 2008-07-22 08:17:41+02:00 </code></pre>