Is there an easy way to convert an RFC 3339 time into a regular Python timestamp?
I\'ve got a script which is reading an ATOM feed and I\'d like to be able to compar
No builtin, afaik.
feed.date.rfc3339 This is a Python library module with functions for converting timestamp strings in RFC 3339 format to Python time float values, and vice versa. RFC 3339 is the timestamp format used by the Atom feed syndication format.
It is BSD-licensed.
http://home.blarg.net/~steveha/pyfeed.html
(Edited so it's clear I didn't write it. :-)