<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>iso8601</name>
<shortdesc>Simple module to parse ISO 8601 dates</shortdesc>
<description>Simple module to parse ISO 8601 dates

This module parses the most common forms of ISO 8601 date strings (e.g.
2007-01-14T20:34:22+00:00) into datetime objects.

&gt;&gt;&gt; import iso8601
&gt;&gt;&gt; iso8601.parse_date("2007-01-25T12:00:00Z")
datetime.datetime(2007, 1, 25, 12, 0, tzinfo=&lt;iso8601.iso8601.Utc ...&gt;)
&gt;&gt;&gt;

Changes
=======

0.1.4
-----

* The default_timezone argument wasn't being passed through correctly,
  UTC was being used in every case. Fixes issue 10.

0.1.3
-----

* Fixed the microsecond handling, the generated microsecond values were 
  way too small. Fixes issue 9.

0.1.2
-----

* Adding ParseError to __all__ in iso8601 module, allows people to import it.
  Addresses issue 7.
* Be a little more flexible when dealing with dates without leading zeroes.
  This violates the spec a little, but handles more dates as seen in the 
  field. Addresses issue 6.
* Allow date/time separators other than T.

0.1.1
-----

* When parsing dates without a timezone the specified default is used. If no
  default is specified then UTC is used. Addresses issue 4.</description>
<homepage rdf:resource="http://code.google.com/p/pyiso8601/" />
<maintainer><foaf:Person><foaf:name>Michael Twomey</foaf:name>
<foaf:mbox_sha1sum>cbf341e768cbfcac14e916352aff2233b3b89480</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.1.4</revision></Version></release>
</Project></rdf:RDF>