<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Understanding DateTime, tzinfo, timedelta &amp; TimeZone Conversions in python</title>
	<atom:link href="http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/</link>
	<description>Building Amazing Webapps</description>
	<lastBuildDate>Wed, 10 Mar 2010 01:38:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mark Huang</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-3781</link>
		<dc:creator>Mark Huang</dc:creator>
		<pubDate>Tue, 02 Feb 2010 08:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-3781</guid>
		<description>&lt;p&gt;Wow, this is great!  So much clearer than the Python docs!!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Wow, this is great!  So much clearer than the Python docs!!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: eternicode</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-2819</link>
		<dc:creator>eternicode</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-2819</guid>
		<description>&lt;p&gt;python&#039;s dateutil.parser.parse is a useful function for parsing tz-aware strings.  For example, the twitter api gives each status a &quot;created_at&quot; attribute in the form of &quot;Fri Oct 09 18:54:01 +0000 2009&quot;.  dateutil.parser.parse(&quot;Fri Oct 09 18:54:01 +0000 2009&quot;) returns a datetime object complete with a relevant tzinfo.  From there, you can use datetime&#039;s strftime to reformat the time, or time.mktime(datetime.timetuple()) to get a unix timestamp.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>python&#8217;s dateutil.parser.parse is a useful function for parsing tz-aware strings.  For example, the twitter api gives each status a &#8220;created_at&#8221; attribute in the form of &#8220;Fri Oct 09 18:54:01 +0000 2009&#8243;.  dateutil.parser.parse(&#8220;Fri Oct 09 18:54:01 +0000 2009&#8243;) returns a datetime object complete with a relevant tzinfo.  From there, you can use datetime&#8217;s strftime to reformat the time, or time.mktime(datetime.timetuple()) to get a unix timestamp.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rama Vadakattu</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-623</link>
		<dc:creator>Rama Vadakattu</dc:creator>
		<pubDate>Fri, 20 Mar 2009 10:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-623</guid>
		<description>&lt;p&gt;@William
Thanks for informing that.Will check those things and include it here very soon.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@William
Thanks for informing that.Will check those things and include it here very soon.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: William</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-597</link>
		<dc:creator>William</dc:creator>
		<pubDate>Thu, 19 Mar 2009 16:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-597</guid>
		<description>&lt;p&gt;You might also want to point people to &lt;a href=&quot;http://pytz.sourceforge.net/&quot; rel=&quot;nofollow&quot;&gt;PyTZ&lt;/a&gt; which provides a set of standard  timezone definitions. Also, in the section about converting a datetime into a string, you may want to mention isoformat().&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You might also want to point people to <a href="http://pytz.sourceforge.net/" rel="nofollow">PyTZ</a> which provides a set of standard  timezone definitions. Also, in the section about converting a datetime into a string, you may want to mention isoformat().</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-215</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 04 Mar 2009 13:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-215</guid>
		<description>&lt;p&gt;This is great. Just this week I was scratching my head trying to figure out TZs and the python documentation was confusing me. Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is great. Just this week I was scratching my head trying to figure out TZs and the python documentation was confusing me. Thanks!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Raja</title>
		<link>http://uswaretech.com/blog/2009/02/understanding-datetime-tzinfo-timedelta-timezone-conversions-python/comment-page-1/#comment-129</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Thu, 26 Feb 2009 16:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/2009/02/understanding-datetimetzinfotimedelta-timezone-conversions-in-python-2/#comment-129</guid>
		<description>&lt;p&gt;Dude, this is a waaay clearer explanation of python dates &amp; times. Especially the tzinfo parts&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dude, this is a waaay clearer explanation of python dates &amp; times. Especially the tzinfo parts</p>]]></content:encoded>
	</item>
</channel>
</rss>
