<?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>Julian Bonilla &#187; Python</title>
	<atom:link href="http://julianbonilla.com/category/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://julianbonilla.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Aug 2008 15:45:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding Python site-packages</title>
		<link>http://julianbonilla.com/2008/03/16/finding-python-site-packages/</link>
		<comments>http://julianbonilla.com/2008/03/16/finding-python-site-packages/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 23:31:59 +0000</pubDate>
		<dc:creator>Julian Bonilla</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://julianbonilla.com/2008/03/16/finding-python-site-packages/</guid>
		<description><![CDATA[Quick way to locate the Python site-packages directory:
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
Most likely here on Mac OS X:
/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages
]]></description>
			<content:encoded><![CDATA[<p>Quick way to locate the Python site-packages directory:</p>
<pre class="literal-block">python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"</pre>
<p>Most likely here on Mac OS X:</p>
<pre class="literal-block">/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages</pre>
]]></content:encoded>
			<wfw:commentRss>http://julianbonilla.com/2008/03/16/finding-python-site-packages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Brief Introduction to Buildout</title>
		<link>http://julianbonilla.com/2008/03/05/a-brief-introduction-to-buildout/</link>
		<comments>http://julianbonilla.com/2008/03/05/a-brief-introduction-to-buildout/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 03:56:37 +0000</pubDate>
		<dc:creator>Julian Bonilla</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://julianbonilla.com/2008/03/05/a-brief-introduction-to-buildout/</guid>
		<description><![CDATA[The buildout project is a tool for developing, packaging, and deploying Python applications.
Brandon Craig Rhodes released an excellent screencast on buildout from his presentation at PyAtl.

]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://pypi.python.org/pypi/zc.buildout" title="zc.buildout">buildout</a> project is a tool for developing, packaging, and deploying Python applications.</p>
<p><a href="http://rhodesmill.org/brandon/buildout/" title="Brandon Craig Rhodes">Brandon Craig Rhodes</a> released an excellent screencast on buildout from his presentation at <a href="http://www.pyatl.org/" title="Python Atlanta">PyAtl</a>.</p>
<p><embed src="http://video.google.com/googleplayer.swf?docId=3428163188647461098&amp;hl=en" style="width: 400px; height: 326px" id="VideoPlayback" type="application/x-shockwave-flash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://julianbonilla.com/2008/03/05/a-brief-introduction-to-buildout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xkcd &#8211; Python</title>
		<link>http://julianbonilla.com/2007/12/15/xkcd-python/</link>
		<comments>http://julianbonilla.com/2007/12/15/xkcd-python/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 05:10:36 +0000</pubDate>
		<dc:creator>Julian Bonilla</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://julianbonilla.com/2007/12/15/xkcd-python/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://julianbonilla.com/wp-content/uploads/2007/12/python.png" alt="xkcd - Python" height="510" width="450" /></p>
]]></content:encoded>
			<wfw:commentRss>http://julianbonilla.com/2007/12/15/xkcd-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python 3.0</title>
		<link>http://julianbonilla.com/2007/09/01/python-30/</link>
		<comments>http://julianbonilla.com/2007/09/01/python-30/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 06:24:02 +0000</pubDate>
		<dc:creator>Julian Bonilla</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://julianbonilla.com/2007/09/01/python-30/</guid>
		<description><![CDATA[Python 3.0a1 is available for download.

$ python3.0
Python 3.0a1 (py3k, Sep  1 2007, 00:29:23)
[GCC 4.0.0 20041026 (Apple Computer, Inc. build 4061)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
&#62;&#62;&#62;

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.python.org/download/releases/3.0/" alt="Python 3.0a1">Python 3.0a1</a> is available for download.</p>
<p><code><br />
$ python3.0<br />
Python 3.0a1 (py3k, Sep  1 2007, 00:29:23)<br />
[GCC 4.0.0 20041026 (Apple Computer, Inc. build 4061)] on darwin<br />
Type "help", "copyright", "credits" or "license" for more information.<br />
&gt;&gt;&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://julianbonilla.com/2007/09/01/python-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.929 seconds -->
