I'm trying to generate an RFC 3339 UTC timestamp in Python. So far I've been able to do the following:

>>> d = datetime.datetime.now()
>>> print d.isoformat('T')
2011-12-18T20:46:00.392227

My problem is with setting the UTC offset.

According to the docs, the classmethod datetime.now([tz]), takes an optional tz argument where tz must be an instance of a class tzinfo subclass, and datetime.tzinfo is an abstract base class for time zone information objects.

This is where I get lost- How come tzinfo is an abstract class, and how am I supposed to implement it?


(NOTE: In PHP it's as simple as timestamp = date(DATE_RFC3339);, which is why I can't understand why Python's approach is so convoluted...)

link|improve this question

80% accept rate
Just found this similar question: ISO Time (ISO 8601) in Python? – Yarin Dec 19 '11 at 4:05
feedback

3 Answers

up vote 3 down vote accepted

Further down in the same doc that you linked to, it explains how to implement it, giving some examples, including full code for a UTC class (representing UTC), a FixedOffset class (representing a timezone with a fixed offset from UTC, as opposed to a timezone with DST and whatnot), and a few others.

link|improve this answer
@ruakh- thanks, I missed those examples- The LocalTimezone() class did the trick. – Yarin Dec 19 '11 at 3:34
@Yarin: You're welcome! – ruakh Dec 19 '11 at 3:42
feedback

Timezones are a pain, which is probably why they chose not to include them in the datetime library.

try pytz, it has the tzinfo your looking for: http://pytz.sourceforge.net/

Or, just use UTC, and throw a "Z" on the end to mark the "timezone" as UTC.

d = datetime.datetime.utcnow() # <-- get time in UTC
print d.isoformat("T") + "Z"
link|improve this answer
@monkut- thanks- The pytz class looks like another implementation that would work, but I ended up using the example included in the docs, per ruakh's answer. – Yarin Dec 19 '11 at 3:36
@monkut- +1 your second example is a good idea too – Yarin Dec 19 '11 at 3:42
feedback

Another useful utility I just started working with: dateutil library for timezone handling and date parsing. Recommended around SO, including this answer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.