python time to age part 2, timezones - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:02:56Zhttp://stackoverflow.com/feeds/question/526406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones1python time to age part 2, timezonesAshy2009-02-08T21:12:03Z2009-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>>>> from datetime import datetime
>>> fmt = "%a, %d %b %Y %H:%M:%S +0200"
>>> datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0200", fmt)
datetime.datetime(2008, 7, 22, 8, 17, 41)
>>> datetime.strptime("Tue, 22 Jul 2008 08:17:41 +0300", fmt)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
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#5264361Answer by David for python time to age part 2, timezonesDavid2009-02-08T21:25:06Z2009-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#5264502Answer by gs for python time to age part 2, timezonesgs2009-02-08T21:30:13Z2009-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#5266431Answer by John Fouhy for python time to age part 2, timezonesJohn Fouhy2009-02-08T23:23:29Z2009-02-08T23:23:29Z<p>It seems that %Z corresponds to time zone names, not offsets.</p>
<p>For example, given:</p>
<pre><code>>>> format = '%a, %d %b %Y %H:%M:%S %Z'
</code></pre>
<p>I can parse:</p>
<pre><code>>>> 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>>>> 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#5269764Answer by bobince for python time to age part 2, timezonesbobince2009-02-09T02:22:49Z2009-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>>>> import email.utils
>>> 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#6389730Answer by Miuler for python time to age part 2, timezonesMiuler2009-03-12T14:48:06Z2009-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)) <- dt
print dt
2008-07-22 08:17:41+02:00
</code></pre>