<?xml version="1.0" encoding="iso-8859-1"?><!-- Copy and paste the url into your newsreader application" -->
<rss version="2.0" 
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<channel>
	<title>About.com Python</title>
	<link>http://python.about.com/</link>
	<description>Get the latest headlines from the About.com Python GuideSite.</description>
	<image>
		<title>About.com</title>
		<url>http://clk.about.com/?zi=1/1hh</url> 
		<link>http://www.about.com/</link> 
		<width>118</width> 
		<height>20</height> 
	</image>
	<dc:language>en-us</dc:language>
	<dc:creator></dc:creator>
	<dc:date>2009-02-25T16:27:07Z</dc:date>
	<pubDate>Wed, 25 Feb 2009 16:27:07 +0000</pubDate>
	<admin:generatorAgent rdf:resource="" />
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
	
			<item>
			<title>Converting bytes to str in Python 3.0 via Functions</title>
			<link>http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm</link>
			<description>&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm&quot;&gt;Last week&lt;/a&gt;, we looked at how to convert between strings of the &lt;code&gt;str&lt;/code&gt; data type and strings of the &lt;code&gt;bytes&lt;/code&gt; data type &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/ss/30_strings_3.htm&quot;&gt;using methods&lt;/a&gt; in the string class of &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/Python_3_0.htm&quot;&gt;Python 3.x&lt;/a&gt;.  Another way that is a bit more straightforward is to simply call the function form of the target data type.  So, to convert to &lt;code&gt;str&lt;/code&gt;, call 
&lt;blockquote&gt;
&lt;code&gt;str(&amp;#60;bytes string&amp;#62;, &amp;#60;encoding&amp;#62;)&lt;/code&gt;
&lt;/blockquote&gt;  
Similarly, you can make bytes from &lt;code&gt;str&lt;/code&gt; with
&lt;blockquote&gt;
&lt;code&gt;bytes(&amp;#60;str string&amp;#62;, &amp;#60;encoding&amp;#62;)&lt;/code&gt;
&lt;/blockquote&gt;  
For more on the syntax of each, see &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/ss/30_strings_4.htm&quot;&gt;&quot;Converting str to bytes via Functions&quot;&lt;/a&gt; in &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/ss/30_strings.htm&quot;&gt;&quot;A Guide to Text vs Data in Python 3.0&quot;&lt;/a&gt;.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm"&gt;Converting bytes to str in Python 3.0 via Functions&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Thursday, February 26th, 2009 at 05:53:16.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm&amp;zItl=Converting bytes to str in Python 3.0 via Functions"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/26/converting-bytes-to-str-in-python-30-via-functions.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Thu, 26 Feb 2009 05:53:16 +0000</pubDate>
			<dc:date>2009-02-26T05:53:16Z</dc:date>

		</item>
			<item>
			<title>Using Dates as Variables</title>
			<link>http://python.about.com/b/2009/02/25/using-dates-as-variables.htm</link>
			<description>Recently, &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/dir-app/bbCard/profile.asp?webtag=ab-python&amp;#038;uid=1878164109&quot;&gt;'Sugarmag1991'&lt;/a&gt; posed the question in the forum of &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/n/pfx/forum.aspx?msg=18&amp;#038;nav=messages&amp;#038;webtag=ab-python&quot;&gt;how to calculate the due date in a lending library system&lt;/a&gt;.  The extended post has more context.  I am not going to answer the question here but encourage you to take a read of &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/n/pfx/forum.aspx?msg=18&amp;#038;nav=messages&amp;#038;webtag=ab-python&quot;&gt;the post&lt;/a&gt; and &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/n/pfx/forum.aspx?toUserId=1878164109&amp;#038;nav=post&amp;#038;webtag=ab-python&amp;#038;replyToTid=18&amp;#038;replyToTsn=1&quot;&gt;answer it&lt;/a&gt; if you can.  The &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/n/pfx/forum.aspx?folderId=1&amp;#038;listMode=13&amp;#038;nav=messages&amp;#038;webtag=ab-python&quot;&gt;Python forum&lt;/a&gt; is designed for you to help others, so have a go and &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://forums.about.com/n/pfx/forum.aspx?toUserId=1878164109&amp;#038;nav=post&amp;#038;webtag=ab-python&amp;#038;replyToTid=18&amp;#038;replyToTsn=1&quot;&gt;post your reply&lt;/a&gt;.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/25/using-dates-as-variables.htm"&gt;Using Dates as Variables&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Wednesday, February 25th, 2009 at 16:27:07.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/25/using-dates-as-variables.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/25/using-dates-as-variables.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/25/using-dates-as-variables.htm&amp;zItl=Using Dates as Variables"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/25/using-dates-as-variables.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Wed, 25 Feb 2009 16:27:07 +0000</pubDate>
			<dc:date>2009-02-25T16:27:07Z</dc:date>

		</item>
			<item>
			<title>SANS Publishes Consensus Guidelines for FISMA</title>
			<link>http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm</link>
			<description>It is an open secret that the US government is perhaps the largest software customer in the country.  If you or your company deal with any government agency, you will be aware of &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://en.wikipedia.org/wiki/Federal_Information_Security_Management_Act_of_2002&quot;&gt;FISMA&lt;/a&gt; (Federal Information Security Management Act of 2002).  Seeking to bolster the criteria of FISMA, several federal agencies and private companies have released the &lt;a href=&quot;http://www.sans.org/cag/&quot; target=&quot;_blank&quot;&gt;Consensus Audit Guidelines&lt;/a&gt; (CAG).  There they list 20 criteria for cybersecurity that need to be implemented in your organisation in order to be FISMA compliant.  The list runs as follows:

&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/1.php&quot; title=&quot;Inventory of authorized and unauthorized hardware.&quot; target=&quot;_blank&quot;&gt;Inventory of authorized and unauthorized hardware.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/2.php&quot; title=&quot;Inventory of authorized and unauthorized software; enforcement of white lists of authorized software.&quot; target=&quot;_blank&quot;&gt;Inventory of authorized and unauthorized software; enforcement of white lists of authorized software.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/3.php&quot; title=&quot;Secure configurations for hardware and software on laptops, workstations, and servers.&quot; target=&quot;_blank&quot;&gt;Secure configurations for hardware and software on laptops, workstations, and servers.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/4.php&quot; title=&quot;Secure configurations of network devices such as firewalls, routers, and switches.&quot; target=&quot;_blank&quot;&gt;Secure configurations of network devices such as firewalls, routers, and switches.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/5.php&quot; title=&quot;Boundary Defense&quot; target=&quot;_blank&quot;&gt;Boundary Defense&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/6.php&quot; title=&quot;Maintenance, Monitoring and Analysis of Complete Audit Logs&quot; target=&quot;_blank&quot;&gt;Maintenance, Monitoring and Analysis of Complete Audit Logs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/7.php&quot; title=&quot;Application Software Security&quot; target=&quot;_blank&quot;&gt;Application Software Security&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/cag/control/8.php&quot; title=&quot;Controlled Use of Administrative Privileges&quot; target=&quot;_blank&quot;&gt;Controlled Use of Administrative Privileges&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/9.php&quot; title=&quot;Controlled Access Based On Need to Know&quot; target=&quot;_blank&quot;&gt;Controlled Access Based On Need to Know&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/10.php&quot; title=&quot;Continuous Vulnerability Testing and Remediation&quot; target=&quot;_blank&quot;&gt;Continuous Vulnerability Testing and Remediation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/11.php&quot; title=&quot;Dormant Account Monitoring and Control&quot; target=&quot;_blank&quot;&gt;Dormant Account Monitoring and Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/12.php&quot; title=&quot;Anti-Malware Defenses&quot; target=&quot;_blank&quot;&gt;Anti-Malware Defenses&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/13.php&quot; title=&quot;Limitation and Control of Ports, Protocols and Services&quot; target=&quot;_blank&quot;&gt;Limitation and Control of Ports, Protocols and Services&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/14.php&quot; title=&quot;Wireless Device Control&quot; target=&quot;_blank&quot;&gt;Wireless Device Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/15.php&quot; title=&quot;Data Leakage Protection&quot; target=&quot;_blank&quot;&gt;Data Leakage Protection&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/16.php&quot; title=&quot;Secure Network Engineering&quot; target=&quot;_blank&quot;&gt;Secure Network Engineering&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/17.php&quot; title=&quot;Red Team Exercises&quot; target=&quot;_blank&quot;&gt;Red Team Exercises&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/18.php&quot; title=&quot;Incident Response Capability&quot; target=&quot;_blank&quot;&gt;Incident Response Capability&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/19.php&quot; title=&quot;Data Recovery Capability&quot; target=&quot;_blank&quot;&gt;Data Recovery Capability&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.sans.org/cag/control/20.php&quot; title=&quot;Security Skills Assessment and Appropriate Training To Fill Gaps&quot; target=&quot;_blank&quot;&gt;Security Skills Assessment and Appropriate Training To Fill Gaps&lt;/a&gt;&lt;/li&gt; 
&lt;/ol&gt;

Obviously, not all of these relate to the security of web applications themselves.  Rather, they apply not only to the software being implementated but also to the environment in which it is developed.  Application security is additional, and you can find more about it at the following pages:

&lt;ul&gt;
&lt;li&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/cgiformswithpython/ss/ProgramSecurity.htm&quot;&gt;Programming Secure Web Applications in Python&lt;/a&gt;
&lt;li&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/b/2009/01/13/the-25-most-dangerous-programming-errors.htm&quot;&gt;The 25 Most Dangerous Programming Errors&lt;/a&gt;
&lt;li&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/b/2008/08/19/https-cookie-jacking-protecting-yourself.htm&quot;&gt;HTTPS Cookie Jacking: Protecting Yourself&lt;/a&gt;
&lt;li&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.wpadmin.about.com/wp-admin/post.php?action=edit&amp;#038;post=293&quot;&gt;Jacking HTTPS Cookies: When Encryption is not Enough&lt;/a&gt;
&lt;li&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonstandardlibrary/qt/getpass_doc.htm&quot;&gt;Getting Login Information Securely&lt;/a&gt;
&lt;/ul&gt;&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm"&gt;SANS Publishes Consensus Guidelines for FISMA&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Tuesday, February 24th, 2009 at 05:44:42.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm&amp;zItl=SANS Publishes Consensus Guidelines for FISMA"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/24/sans-publishes-consensus-guidelines-for-fisma.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Tue, 24 Feb 2009 05:44:42 +0000</pubDate>
			<dc:date>2009-02-24T05:44:42Z</dc:date>

		</item>
			<item>
			<title>RegEx Competition!</title>
			<link>http://python.about.com/b/2009/02/21/regex-competition.htm</link>
			<description>&lt;em&gt;&lt;strong&gt;NOTE:&lt;/strong&gt;&lt;/em&gt;  &lt;em&gt;Please don't click on any links in this post until you read it through.&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;

Even if you have taken the&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/helloworld.htm&quot;&gt; &quot;Hello, World!&quot;&lt;/a&gt; crash course in &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com&quot;&gt;Python&lt;/a&gt;, you would be forgiven if you were unsure of the difference between &lt;a href=&quot;http://python.about.com/od/regularexpressions/g/regex_name_tag.htm&quot;&gt;&lt;code&gt;(?P&amp;#60;name&amp;#62;..)&lt;/code&gt;&lt;/a&gt; and &lt;a href=&quot;http://python.about.com/od/regularexpressions/g/regex_recalling.htm&quot;&gt;&lt;code&gt;(?P=name)&lt;/code&gt;&lt;/a&gt; when using &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/regularexpressions&quot;&gt;Python regular expressions&lt;/a&gt;.  The fact is that to one who is good with a hammer everything looks like a nail.  Consequently, our tendency as humans is to try to make everything a nail on which we can use a hammer.  A good sign of this &quot;syndrome&quot; is an inability to name at least 21 of the 35 different &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonregexglossary/Python_Regular_Expression_Glossary.htm&quot;&gt;regex symbols and phrases&lt;/a&gt; found in Python - that is only 60% of what is available to you in the &lt;a href=&quot;http://python.about.com/od/pythonstandardlibrary/a/re_module1.htm&quot;&gt;&lt;code&gt;re&lt;/code&gt;&lt;/a&gt; module.  As most could not, a competition might well profit us all.  The challenge: 
&lt;blockquote&gt;
Name all 35 symbols and phrases without looking at the &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonregexglossary/Python_Regular_Expression_Glossary.htm&quot;&gt;RegEx Glossary&lt;/a&gt; of this site.
&lt;/blockquote&gt; 
You are on your honour not to cheat.  Whoever does it first will get their props by due recognition in &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/b/&quot;&gt;this space&lt;/a&gt;, accompanied by their photo if they send it.  The competition runs until 1st March 2009 (exclusive).  Please do not post your answer in the comments but send me your answer via email at &lt;em&gt;python.guide&lt;stronge&gt;[at]&lt;/strong&gt;about.com&lt;/em&gt; (substituting '@' for the [at]).&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/21/regex-competition.htm"&gt;RegEx Competition!&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Saturday, February 21st, 2009 at 14:20:25.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/21/regex-competition.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/21/regex-competition.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/21/regex-competition.htm&amp;zItl=RegEx Competition!"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/21/regex-competition.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Sat, 21 Feb 2009 14:20:25 +0000</pubDate>
			<dc:date>2009-02-21T14:20:25Z</dc:date>

		</item>
			<item>
			<title>Converting str to bytes in Python 3.0 via Methods</title>
			<link>http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm</link>
			<description>Given the &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/ss/30_strings.htm&quot;&gt;significant difference between text and data&lt;/a&gt; in &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/Python_3_0.htm&quot;&gt;Python 3.0&lt;/a&gt;, you will not go far in programming against the 3.0 standard without being able to convert between them.  One simple method of converting between &lt;code&gt;str&lt;/code&gt; and &lt;code&gt;bytes&lt;/code&gt; is to use the methods available to each class.  To encode &lt;code&gt;str&lt;/code&gt; as &lt;code&gt;bytes&lt;/code&gt;, use &lt;code&gt;str.encode()&lt;/code&gt;.  For &lt;code&gt;bytes&lt;/code&gt; to &lt;code&gt;str&lt;/code&gt;, use &lt;code&gt;byte.decode()&lt;/code&gt;.  See &lt;a href=&quot;http://python.about.com/od/python30/ss/30_strings_3.htm&quot;&gt;&quot;Converting &lt;code&gt;str&lt;/code&gt; to &lt;code&gt;bytes&lt;/code&gt; via Methods&quot;&lt;/a&gt; for more on how to use them and more on &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/py30_transition.htm&quot;&gt;transitioning from 2.x to Python 3.0&lt;/a&gt;.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm"&gt;Converting str to bytes in Python 3.0 via Methods&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Thursday, February 19th, 2009 at 15:24:55.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm&amp;zItl=Converting str to bytes in Python 3.0 via Methods"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/19/converting-str-to-bytes-in-python-30-via-methods.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Thu, 19 Feb 2009 15:24:55 +0000</pubDate>
			<dc:date>2009-02-19T15:24:55Z</dc:date>

		</item>
			<item>
			<title>Python 3.01 Released</title>
			<link>http://python.about.com/b/2009/02/17/python-301-released.htm</link>
			<description>If you are using or &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/py30_transition.htm&quot;&gt;transitioning to Python 3.0&lt;/a&gt;, you will want to download and install the recently released &lt;a href=&quot;http://python.org/download/releases/3.0.1/&quot; target=&quot;_blank&quot;&gt;Python 3.01&lt;/a&gt;.  According to the PSF, Python 3 is now in bug-fix-only mode.  The feature set is frozen for now.  If your installation of &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/python30/Python_3_0.htm&quot;&gt;3.0&lt;/a&gt; is not doing what it should, you will want to check out the &lt;a href=&quot;http://python.org/download/releases/3.0.1/NEWS.txt&quot; target=&quot;_blank&quot;&gt;changelog of 3.0&lt;/a&gt; before reporting any problems.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/17/python-301-released.htm"&gt;Python 3.01 Released&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Tuesday, February 17th, 2009 at 15:45:34.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/17/python-301-released.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/17/python-301-released.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/17/python-301-released.htm&amp;zItl=Python 3.01 Released"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/17/python-301-released.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Tue, 17 Feb 2009 15:45:34 +0000</pubDate>
			<dc:date>2009-02-17T15:45:34Z</dc:date>

		</item>
			<item>
			<title>Language of the Year!</title>
			<link>http://python.about.com/b/2009/02/14/language-of-the-year.htm</link>
			<description>Every year, members of &lt;a href=&quot;http://www.linuxquestions.org/questions/index.php&quot; target=&quot;_blank&quot;&gt;Linux Questions.org&lt;/a&gt; vote on their computing favourites.  This year, for the second year in a row, they have voted &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://www.linuxquestions.org/questions/2008-linuxquestions.org-members-choice-awards-83/programming-language-of-the-year-695662/&quot;&gt;Python the Language of the Year&lt;/a&gt;!  &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com&quot;&gt;Python&lt;/a&gt; garnered nearly twice as many votes as any other language in the list.  Other interpreted  contenders were &lt;a href=&quot;http://python.about.com&quot; target=&quot;_blank&quot;&gt;PHP&lt;/a&gt;, &lt;a href=&quot;http://python.about.com&quot; target=&quot;_blank&quot;&gt;Perl&lt;/a&gt;, and &lt;a href=&quot;http://python.about.com&quot; target=&quot;_blank&quot;&gt;Ruby&lt;/a&gt;.  Python met with enthusiastic approval from about twice as many as any of its competitors.  
&lt;br /&gt;&lt;br /&gt;
If you or someone you know does not know Python, yet, you can&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/helloworld.htm&quot;&gt; learn it in a couple of hours&lt;/a&gt; or &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/tp/pytutbeg.htm&quot;&gt;take the scenic tour of a couple of days&lt;/a&gt;.  Then you will know why &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/whatispython_3.htm&quot;&gt;NYSE, NASA, and Google all rely on it&lt;/a&gt; for their daily operations.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/14/language-of-the-year.htm"&gt;Language of the Year!&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Saturday, February 14th, 2009 at 17:29:44.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/14/language-of-the-year.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/14/language-of-the-year.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/14/language-of-the-year.htm&amp;zItl=Language of the Year!"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/14/language-of-the-year.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Sat, 14 Feb 2009 17:29:44 +0000</pubDate>
			<dc:date>2009-02-14T17:29:44Z</dc:date>

		</item>
			<item>
			<title>Calling Names While Port Scanning</title>
			<link>http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm</link>
			<description>The &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/ss/port_scanner_4.htm&quot;&gt;final step&lt;/a&gt; in the process of programming a &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/ss/port_scanner.htm&quot;&gt;port scanner&lt;/a&gt; in Python is now posted.  In addition to the address, we allow the user to choose whether they want to scan all ports or just one by using the '&lt;code&gt;all&lt;/code&gt;' value for the '&lt;code&gt;port&lt;/code&gt;' argument.  As noted in the tutorial, it is best practice to import from &lt;code&gt;optparse&lt;/code&gt; as part of the given &lt;code&gt;if&lt;/code&gt; clause in order to save on system resources.  This way, &lt;code&gt;optparse&lt;/code&gt; is only imported when the program is run independently and safely ignored when the code is imported as a &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/tutorial1/ss/pytutsyntax_9.htm&quot;&gt;module&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
It is worth noting that this entire program really only uses the &lt;code&gt;socket&lt;/code&gt; module for its main functionality.  Just about every &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/Network_Programming_in_Python.htm&quot;&gt;networking&lt;/a&gt; module in the &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonstandardlibrary/Python_Modules.htm&quot;&gt;Python library&lt;/a&gt; relies on the &lt;code&gt;socket&lt;/code&gt; module.  So if you really want to understand how a piece of networking works, try to implement it with just the &lt;a href=&quot;http://python.about.com/od/pythonstandardlibrary/a/sock_doc1.htm&quot;&gt;&lt;code&gt;socket&lt;/code&gt; module&lt;/a&gt; (reference pages: &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonstandardlibrary/a/sock_doc1.htm&quot;&gt;1&lt;/a&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonstandardlibrary/a/sock_doc2.htm&quot;&gt;2&lt;/a&gt; &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonstandardlibrary/a/sock_doc3.htm&quot;&gt;3&lt;/a&gt;).  &lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm"&gt;Calling Names While Port Scanning&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Tuesday, February 10th, 2009 at 02:56:04.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm&amp;zItl=Calling Names While Port Scanning"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/10/calling-names-while-port-scanning.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Tue, 10 Feb 2009 02:56:04 +0000</pubDate>
			<dc:date>2009-02-10T02:56:04Z</dc:date>

		</item>
			<item>
			<title>EVE Online Breaks the 50k Barrier </title>
			<link>http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm</link>
			<description>&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/whatispython_3.htm&quot;&gt;Python being used by major businesses and research groups worldwide&lt;/a&gt; is pretty well known anymore.  However, one area where Python is not always recognised as a professional alternative is games - especially online games.  One prime exhibit for Python as a commercial game language is &lt;a href=&quot;http://eveonline.com/&quot; target=&quot;_blank&quot;&gt;EVE Online&lt;/a&gt; (published by &lt;a href=&quot;http://ccpgames.com/&quot; target=&quot;_blank&quot;&gt;CCP Software of Iceland&lt;/a&gt;).  Today the company noted on the &lt;a href=&quot;http://python.org/&quot; target=&quot;_blank&quot;&gt;PSF website&lt;/a&gt; that they have broken the 50k barrier and now have 51,674 subscriptions!   EVE Online is extreme online gaming and the sheer scale of CCP's endeavour illustrates how rock solid &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/tp/pytutbeg.htm&quot;&gt;Python&lt;/a&gt; is as a gaming platform.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm"&gt;EVE Online Breaks the 50k Barrier &lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Monday, February 9th, 2009 at 14:44:18.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm&amp;zItl=EVE Online Breaks the 50k Barrier "&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/09/eve-online-breaks-the-50k-barrier.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Mon, 09 Feb 2009 14:44:18 +0000</pubDate>
			<dc:date>2009-02-09T14:44:18Z</dc:date>

		</item>
			<item>
			<title>Finding a Python Job</title>
			<link>http://python.about.com/b/2009/02/07/finding-a-python-job.htm</link>
			<description>It is no secret that the economy worldwide has taken a &lt;a href=&quot;http://media.ft.com/cms/d3b26bf0-f21e-11dd-9678-0000779fd2ac.gif&quot; target=&quot;_blank&quot;&gt;downturn&lt;/a&gt;.  However, that does not mean that nobody is hiring.  Below are several vacancies that require &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com&quot;&gt;Python&lt;/a&gt; skills.  If you don't have them, get up to speed with either our down-and-dirty &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/ss/helloworld.htm&quot;&gt;&quot;Hello, World!&quot;&lt;/a&gt; or the kinder-and-slower &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/tp/pytutbeg.htm&quot;&gt;beginners tutorials&lt;/a&gt;.  Once you have the basics, work through a couple of the project guides on this site before you think of going for one of these posts.  
&lt;br /&gt;&lt;br /&gt;
For &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/cgiformswithpython/Web_Development.htm&quot;&gt;web development&lt;/a&gt;, you will need to add to Python technologies and languages such as &lt;a href=&quot;http://php.about.com&quot; target=&quot;_blank&quot;&gt;PHP&lt;/a&gt;, &lt;a href=&quot;http://webdesign.about.com/od/htmlxhtmltutorials/p/learnhtml.htm&quot; target=&quot;_blank&quot;&gt;HTML&lt;/a&gt;, and &lt;a href=&quot;http://javascript.about.com/od/reference/a/js101.htm&quot; target=&quot;_blank&quot;&gt;JavaScript&lt;/a&gt;.  For web services and/or &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/Network_Programming_in_Python.htm&quot;&gt;network programming&lt;/a&gt;, be sure to work through the tutorials on programming a &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/ss/PythonWebServer.htm&quot;&gt;web server&lt;/a&gt; and a &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/ss/beg_web_client.htm&quot;&gt;web client&lt;/a&gt;, as well as &lt;a href=&quot;http://linux.about.com/od/linux101/Linux_101.htm&quot; target=&quot;_blank&quot;&gt;Linux&lt;/a&gt;, &lt;a href=&quot;http://webdesign.about.com/library/weekly/aa031802a.htm&quot; target=&quot;_blank&quot;&gt;SOAP&lt;/a&gt; and &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/networkingwithpython/p/pynetprotocols.htm&quot;&gt;other protocols&lt;/a&gt;.  Finally for &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonanddatabases/Connecting_to_Databases_With_Python.htm&quot;&gt;database administration&lt;/a&gt; and Python, check out how to use Python with PostgreSQL (&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonanddatabases/ss/postgresqlread.htm&quot;&gt;read&lt;/a&gt;/&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonanddatabases/ss/dbpostgresql.htm&quot;&gt;write&lt;/a&gt;) and MySQL (&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonanddatabases/ss/mymysqlread1.htm&quot;&gt;read&lt;/a&gt;/&lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonanddatabases/ss/mysql_insert.htm&quot;&gt;write&lt;/a&gt;).

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://about.indeed.com/pagead/clk?mo=r&amp;#038;ad=-6NYlbfkN0BxHg24r5E-lekxBHTU9YqosUsKOCDfmTTHmLd0GwHq_-3gMi4XxAISQkfRzirrgKBPacbQI-AdFCnw13-yrBn7Qixi61cGRjI9p8xS7Pc_QO-5UoPrUbg-pcIgAsAe01BxOxtjq_yFWCUKSDxsky9QrpzoRE3DdmsJ_8g1EP86S1XrNgdNwNA7KboY6iat7kLs1aYyW4qHOHGlkFY1bsN8j166TfdS-3Fv2hPF54c928kJLeI31VHvYWPULpB9Kj0=&amp;#038;q=http%3A%2F%2Fjobirn.com%2F%3Fjobid%3D113236%26utm_source%3DIndeed%26utm_medium%3Dcpc%26utm_campaign%3DIndeed&amp;#038;p=6&amp;#038;jsa=6834&quot; target=&quot;_blank&quot;&gt;Web Developer in Quebec&lt;/a&gt; (Canada)
&lt;li&gt;&lt;a href=&quot;http://about.indeed.com/pagead/clk?mo=r&amp;#038;ad=-6NYlbfkN0BxHg24r5E-lekxBHTU9YqosUsKOCDfmTTHmLd0GwHq_-3gMi4XxAIS2YbP3MuPCvb8zEmsBlUFKCjATxQmRgTZrvuT-5DgQTolmEdr-HV6AVTf5aF6WuJgL0Gmd8iOjnutU2R5AwFN-ly0jKEoDYnkoZr81qtQ97IUDFBBS2CxlPyvXNZKAwKs8WDPRGNm5N97AkjYYAuqjFPtRziSit3Y9dYdLE0Defwo3lQSAS3PWN3oJ-07V-bAmLnvEcSICog=&amp;#038;q=http%3A%2F%2Fjobirn.com%2F%3Fjobid%3D148268%26utm_source%3DIndeed%26utm_medium%3Dcpc%26utm_campaign%3DIndeed&amp;#038;p=8&amp;#038;jsa=6834&quot; target=&quot;_blank&quot;&gt;Python Developer in Bellevue, WA&lt;/a&gt; (USA)
&lt;li&gt;&lt;a href=&quot;http://about.indeed.com/pagead/clk?mo=r&amp;#038;ad=-6NYlbfkN0BxHg24r5E-lekxBHTU9YqosUsKOCDfmTTHmLd0GwHq_-3gMi4XxAISjFEqRZsxXj8iq0W8pHHBG-2blcfEGATi_hoElZpmr65b6Dq7PGHjk5aJuWJHCvtx5lhhfY9DW3vqxBcgYsmoKaMPR4RqRtmiXwCtlTm7fzK-QddCOL_JZiNTiBxparKcAQUjW2Mq12LmVVj_GF1R1L9RPRgTiEErPN37exJjty4ffrCSwPFY2e4FMkt_ZRsX5f0AKqsayaMd3BqvyhTvmw==&amp;#038;q=http%3A%2F%2Fjobirn.com%2F%3Fjobid%3D117617%26utm_source%3DIndeed%26utm_medium%3Dcpc%26utm_campaign%3DIndeed&amp;#038;p=1&amp;#038;jsa=1812&quot; target=&quot;_blank&quot;&gt;Python Developer in Pasadena, CA&lt;/a&gt; (USA)
&lt;li&gt;&lt;a href=&quot;http://about.indeed.com/pagead/clk?mo=r&amp;#038;ad=-6NYlbfkN0Dj_FOxq0bnv8YqZkuP--3QOfLNLlTNQW5PPJXpGf1m56iE7PY-v9BrMt1KSxKgfvkkzp278kR5QKeBTQ66DZb-Xja0HW8dKBw57ORNdijJCdGE8NuPfVE3cZP_lLTz_OiW9m01xDMRlDNWxod2zOhG3wvmFXzZcbvT88u4C6R0yKJ_o_Smqfw7zZU23iUeDPwU-v-WFfgQflfBw8PJHRzqkfQ3dnkbO2QGdw8zhl2P-cNeAZY8AHLnD09b4gGMjBY=&amp;#038;q=http%3A%2F%2Fad.doubleclick.net%2Fclk%3B140062409%3B20611449%3Bs%3Fhttp%3A%2F%2Fseeker.dice.com%2Fjobsearch%2Fservlet%2FJobSearch%3Fop%3D101%26dockey%3Dxml%2F9%2Fc%2F9ca8ff0db7e49056b0b865df7421b82f%40endecaindex%26c%3D1%26source%3D20&amp;#038;p=2&amp;#038;jsa=1812&quot; target=&quot;_blank&quot;&gt;Python-Able DBA&lt;/a&gt; in Reston, VA (USA)
&lt;/ul&gt;
You can find more like these in the &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/pythonjobs/Python_Jobs_Get_a_Job_That_Does_Justice_to_Your_Python_Skills.htm&quot;&gt;Python Jobs&lt;/a&gt; section.  You can also find more projects like those mentioned under the &lt;a href=&quot;http://clk.about.com/?zi=1/1hc&amp;#038;zu=http://python.about.com/od/gettingstarted/u/Pro-Python.htm&quot;&gt;&quot;Pro Python&quot;&lt;/a&gt; track above.&lt;p style="background:#f5f3ef;border: 1px solid #d5d0bf;padding:.5em;"&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/07/finding-a-python-job.htm"&gt;Finding a Python Job&lt;/a&gt; originally appeared on &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/"&gt;About.com Python&lt;/a&gt; on Saturday, February 7th, 2009 at 06:59:35.&lt;/p&gt;&lt;p&gt;&lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/07/finding-a-python-job.htm"&gt;Permalink&lt;/a&gt; | &lt;a href="http://clk.about.com/?zi=1/1hc&amp;zu=http://python.about.com/b/2009/02/07/finding-a-python-job.htm#gB3"&gt;Comment&lt;/a&gt; | &lt;a href="http://python.about.com/gi/pages/shareurl.htm?PG=http://python.about.com/b/2009/02/07/finding-a-python-job.htm&amp;zItl=Finding a Python Job"&gt;Email this&lt;/a&gt;&lt;/p&gt;</description>
			<guid isPermaLink="true">http://python.about.com/b/2009/02/07/finding-a-python-job.htm</guid>
			<dc:subject></dc:subject>
			<pubDate>Sat, 07 Feb 2009 06:59:35 +0000</pubDate>
			<dc:date>2009-02-07T06:59:35Z</dc:date>

		</item>
	</channel>

</rss>
