<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nomad Journey &#187; Python</title>
	<atom:link href="http://www.nomadjourney.com/category/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nomadjourney.com</link>
	<description>Django, Python, jQuery and whatever cool stuff I can think of</description>
	<lastBuildDate>Tue, 20 Apr 2010 03:51:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Suppressing MySQL/MySQLdb warning messages from Python</title>
		<link>http://www.nomadjourney.com/2010/04/suppressing-mysqlmysqldb-warning-messages-from-python/</link>
		<comments>http://www.nomadjourney.com/2010/04/suppressing-mysqlmysqldb-warning-messages-from-python/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 03:49:51 +0000</pubDate>
		<dc:creator>Nizam</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysqldb]]></category>
		<category><![CDATA[suppress warnings]]></category>
		<category><![CDATA[warning messages]]></category>

		<guid isPermaLink="false">http://www.nomadjourney.com/?p=318</guid>
		<description><![CDATA[Here is a quick three line snippet that will suppress all of those annoying warning messages from MySQL when using MySQLdb:

from warnings import filterwarnings
import MySQLdb as Database
filterwarnings( &#039;ignore&#039;, category = Database.Warning )

To re-enable the warnings later on:

from warnings import resetwarnings
resetwarnings()

More about the warnings Python standard  library:
http://docs.python.org/library/warnings.html
]]></description>
		<wfw:commentRss>http://www.nomadjourney.com/2010/04/suppressing-mysqlmysqldb-warning-messages-from-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7, 64-bit Python and easy_install</title>
		<link>http://www.nomadjourney.com/2009/08/windows-7-64-bit-python-and-easy_install/</link>
		<comments>http://www.nomadjourney.com/2009/08/windows-7-64-bit-python-and-easy_install/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 21:56:55 +0000</pubDate>
		<dc:creator>Nizam</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[easy_install]]></category>
		<category><![CDATA[incompatibility]]></category>
		<category><![CDATA[setuptools]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.nomadjourney.com/?p=246</guid>
		<description><![CDATA[I recently downloaded and installed Windows 7 RTM on my laptop. I upgraded from 32-bit XP to a 64-bit flavor of Windows 7. I decided to install a 64-bit version of Python to take advantage of the 6GB of memory installed on my laptop. All well and good.
I proceeded to grab and set up easy_install [...]]]></description>
		<wfw:commentRss>http://www.nomadjourney.com/2009/08/windows-7-64-bit-python-and-easy_install/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Automatic site login using Python urllib2</title>
		<link>http://www.nomadjourney.com/2009/03/automatic-site-login-using-python-urllib2/</link>
		<comments>http://www.nomadjourney.com/2009/03/automatic-site-login-using-python-urllib2/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 22:06:04 +0000</pubDate>
		<dc:creator>Nizam</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[automatic login]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[HTTPCookieProcessor]]></category>
		<category><![CDATA[urllib2]]></category>

		<guid isPermaLink="false">http://www.nomadjourney.com/?p=85</guid>
		<description><![CDATA[The urllib2 library in Python is very powerful. It can be used is to automate web interactions. A common task that keeps coming up is to automate the process of logging in to a site by POST-ing the login credentials, getting any auth cookies returned, and then sending those cookies back with subsequent requests. urllib2 [...]]]></description>
		<wfw:commentRss>http://www.nomadjourney.com/2009/03/automatic-site-login-using-python-urllib2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
