<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Carpet Python</title>
	<atom:link href="http://tarekziade.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tarekziade.wordpress.com</link>
	<description>Reality is just a point of view (P.K.Dick)</description>
	<pubDate>Mon, 12 May 2008 15:52:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>The new .pypirc format in Python / distutils</title>
		<link>http://tarekziade.wordpress.com/2008/05/12/the-new-pypirc-format-in-python-distutils/</link>
		<comments>http://tarekziade.wordpress.com/2008/05/12/the-new-pypirc-format-in-python-distutils/#comments</comments>
		<pubDate>Mon, 12 May 2008 12:45:17 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<category><![CDATA[distutils]]></category>

		<category><![CDATA[pypi]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=91</guid>
		<description><![CDATA[Thanks to the sprinters in Washington D.C., (Andrew who worked on merging it, Alex, etc.) and people that helped in the discussion (Fred, Martin), my patch to Python for multiple servers handling in .pypirc file has been integrated in 2.6 trunk.
This patch will allow using distutils register and upload commands with several servers, using the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Thanks to the sprinters in Washington D.C., (Andrew who worked on merging it, Alex, etc.) and people that helped in the discussion (Fred, Martin), my patch to Python for multiple servers handling in .pypirc file has been integrated in 2.6 trunk.</p>
<p>This patch will allow using distutils <em>register</em> and upload <em>commands</em> with several servers, using the -r option and storing for each one of them the appropriate username/password in the configuration file. See <a href="http://wiki.python.org/moin/EnhancedPyPI" target="_blank">http://wiki.python.org/moin/EnhancedPyPI</a> for more details.</p>
<p>The <a href="http://pypi.python.org/pypi/collective.dist/" target="_blank">collective.dist</a> package provides the same feature for Python 2.4 and 2.5, through new commands: <em>mregister</em> and <em>mupload</em>.</p>
<p>The new format is also pretty convenient to store several profiles per servers. For instance, if you have several accounts on PyPI, one for your company (acme) and one for your own usage, you can define them like this:</p>
<pre>[distutils]
index-servers =
    pypi
    acme

[pypi]
username:user
password:password

[acme]
username:acme_user
password:password
</pre>
<p>Then use them depending on the package you work in:</p>
<pre>$ python setup.py register -r acme
$ python setup.py register    # default, which is pypi</pre>
<p>When plone.org will go Plone 3 (this is happening soon), the pypirc file can be extended with this new target:</p>
<pre>[distutils]
index-servers =
    pypi
    acme
    plone

[pypi]
username:user
password:password
[acme]
username:acme_user
password:password
[plone]
repository:http://plone.org/products
username:plone_user
password:password</pre>
<p>From there, setuptools aliases can be used in each package to simplify things:</p>
<pre>$ python setup.py alias plone_org register -r plone sdist bdist_egg upload -r plone</pre>
<p>Which will allow you to upload the package to the website in one simple command:</p>
<pre>$ python setup.py plone_org
</pre>
<p>The patch aslo corrects a few minor bugs in distutils, such as:</p>
<ul>
<li>.pypirc was not found on Windows</li>
<li>pydistutils.cfg was not found on Windows</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/91/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/91/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=91&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/05/12/the-new-pypirc-format-in-python-distutils/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>PyPI usage statistics, the zc.buildout effect</title>
		<link>http://tarekziade.wordpress.com/2008/05/08/pypi-usage-statistics-the-zcbuildout-effect/</link>
		<comments>http://tarekziade.wordpress.com/2008/05/08/pypi-usage-statistics-the-zcbuildout-effect/#comments</comments>
		<pubDate>Thu, 08 May 2008 20:59:49 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[zope]]></category>

		<category><![CDATA[zc.buildout]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=90</guid>
		<description><![CDATA[It is interesting to look at the usage statistics at PyPI: http://pypi.python.org/webstats/usage_200805.html#DAYSTATS
Besides the front page, the most visited pages are in order (same thing in April):

zc.buildout
setuptools
zc.recipe.egg
plone.recipe.zope2instance
plone.recipe.distros
python-openid
elementtree
plone.recipe.zope2install

Then the packages in the top 60 are mainly zope eggs. This corresponds to the sequence done by a Plone or Zope being build in a buildout.
If you take a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is interesting to look at the usage statistics at PyPI: <a href="http://pypi.python.org/webstats/usage_200805.html#DAYSTATS" target="_blank">http://pypi.python.org/webstats/usage_200805.html#DAYSTATS</a></p>
<p>Besides the front page, the most visited pages are in order (same thing in April):</p>
<ul>
<li>zc.buildout</li>
<li>setuptools</li>
<li>zc.recipe.egg</li>
<li>plone.recipe.zope2instance</li>
<li>plone.recipe.distros</li>
<li>python-openid</li>
<li>elementtree</li>
<li>plone.recipe.zope2install</li>
</ul>
<p>Then the packages in the top 60 are mainly zope eggs. This corresponds to the sequence done by a Plone or Zope being build in a buildout.</p>
<p>If you take a closer look at <a href="http://pypi.python.org/webstats/url_200804.html" target="_blank">http://pypi.python.org/webstats/url_200804.html</a>, the  next top hits  corresponds to zope.* then plone.* packages.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/90/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/90/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=90&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/05/08/pypi-usage-statistics-the-zcbuildout-effect/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Pycon FR is coming up - may 17/18 - ask the program</title>
		<link>http://tarekziade.wordpress.com/2008/05/07/pycon-fr-is-coming-up-ask-the-program/</link>
		<comments>http://tarekziade.wordpress.com/2008/05/07/pycon-fr-is-coming-up-ask-the-program/#comments</comments>
		<pubDate>Wed, 07 May 2008 13:24:07 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[conference]]></category>

		<category><![CDATA[plone]]></category>

		<category><![CDATA[pycon]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[zope]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=89</guid>
		<description><![CDATA[Pycon FR will take place in Paris, may 17/18, at the Cité des sciences et de la Villette.
A very rich program will be presented:

Learn Python first ! (Eric LEBIGOT)
Graphviz made easier with GvGen (Sebastien Tricaud)
Genes research with Python (Andre Espaze)
CouchDB (Benoit Chesneau)
PyPy explained (Victor Stinner)
Quality Assurance (Julien Jehannet)
Zope 3 overview (Christophe Combelles)
Scapy in action (Renaud [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://fr.pycon.org/" target="_blank">Pycon FR</a> will take place in Paris, may 17/18, at the <a href="http://fr.pycon.org/presentation" target="_blank">Cité des sciences et de la Villette</a>.</p>
<p>A very rich <a href="http://fr.pycon.org/programme" target="_blank">program</a> will be presented:</p>
<ul>
<li>Learn Python first ! (Eric LEBIGOT)</li>
<li><strong>Graphviz</strong> made easier with <strong>GvGen</strong> (Sebastien Tricaud)</li>
<li>Genes research with Python (Andre Espaze)</li>
<li><strong>CouchDB</strong> (Benoit Chesneau)</li>
<li><strong>PyPy</strong> explained (Victor Stinner)</li>
<li>Quality Assurance (Julien Jehannet)</li>
<li><strong>Zope 3</strong> overview (Christophe Combelles)</li>
<li><strong>Scapy</strong> in action (Renaud Lifchitz)</li>
<li><strong>E-sonoclaste</strong>, multimedia annotations (Vincent Rioux)</li>
<li>Why <strong>Django</strong> ? (David Larlet)</li>
<li><strong>PLUIE</strong> project (Michel Claveau)</li>
<li><strong>WSGI</strong> in practice using <strong>Paste</strong> (Gael Pasgrimaud)</li>
<li>Distributed Version Control with <strong>Mercurial</strong> (Michael SCHERER)</li>
<li>Create and deploy Python apps with <strong>zc.buildout</strong> (Tarek Ziadé)</li>
<li><strong>Django</strong> everyday: quality and performance (David Larlet)</li>
<li><strong>Python 3000</strong> (Victor Stinner)</li>
</ul>
<p>There will be <strong>lightning talks</strong> as well, and the French speaking user group (Afpy) will have its annual meeting on sunday morning. A second room will be available for sprints and BoF sessions as well. All the talks will be in French this year</p>
<p>If you are around Paris, please join use ! It free !</p>
<p>Otherwise, watch the talks in the live stream: <a href="http://fr.pycon.org/stream-live" target="_blank">http://fr.pycon.org/stream-live</a></p>
<p>Thanks to our partners, for making this happen:</p>
<ul>
<li>The Python Software Foundation</li>
<li>Logilab</li>
<li>Nerim</li>
<li>Ingeniweb</li>
<li>Resolver Systems</li>
<li>Pilot Systems</li>
<li>WingWare</li>
<li>Makina Corpus</li>
<li>Toonux</li>
<li>ActiveState</li>
<li>Gymglish</li>
<li>Eyrolles</li>
<li>Cité des Sciences et de la Vilette</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/89/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/89/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=89&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/05/07/pycon-fr-is-coming-up-ask-the-program/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Plone Paris Sprint wrapup #3, new.plone.org, collective.dist released !</title>
		<link>http://tarekziade.wordpress.com/2008/05/06/plone-paris-sprint-wrapup-3-newploneorg-collectivedist-released/</link>
		<comments>http://tarekziade.wordpress.com/2008/05/06/plone-paris-sprint-wrapup-3-newploneorg-collectivedist-released/#comments</comments>
		<pubDate>Tue, 06 May 2008 12:49:41 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<category><![CDATA[distutils]]></category>

		<category><![CDATA[parissprint2008]]></category>

		<category><![CDATA[zc.buildout]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=87</guid>
		<description><![CDATA[The main task I worked on during the sprint with Alex and Matthew was making PloneSoftwareCenter ready for the new version of Plone.org. These guys rock. We did tons of things and the new plone.org website is coming up. Alex worked for quite a while on migrating plone.org to plone 3, but let me focus [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The main task I worked on during the sprint with Alex and Matthew was making PloneSoftwareCenter ready for the new version of Plone.org. These guys rock. We did tons of things and the new plone.org website is coming up. Alex worked for quite a while on migrating plone.org to plone 3, but let me focus on the software center part.</p>
<p>First of all, let me explain what is the final goal of the work done in the software center.</p>
<h3>The future of Plonistas: a 100 % egg-based world and what is means for production</h3>
<p>Since a few years, Zope code base was moved into a set of namespaced packages. Plone is following closely. From there zc.buildout is providing a simple way to pick up the right set of packages to build an application. This set is automatically chosen by recipes at Zope and Plone level. Then developers add their own packages and dependencies to provide custom features in their applications.</p>
<p>This mechanism means that each team has to:</p>
<ul>
<li>make distributions of packages (tarball, eggs, ..)</li>
<li>build the application with buildout, then release a source distribution</li>
<li>and provide a way for other developers to build the application on their own, by:
<ul>
<li>publishing the buildout configuration files</li>
<li>pushing the packages the buildout uses into to a server that is reachable by developers</li>
<li>make sure Plone and Zope packages are also reachable</li>
</ul>
</li>
</ul>
<p>This means that each team is responsible at least to release packages.</p>
<h4>Distutils and Cheeseshop</h4>
<p>Distutils provides two commands to publish packages to the world: <strong>register</strong> and <strong>upload</strong>. These commands were intended to provide to the developer a way to push packages to any server that supports the protocol, by using the <em>&#8211;repository</em> option.</p>
<p>But in reality, the only server that is publicly available is the Cheeseshop (<a href="http://pypi.python.org" target="_blank">pypi.python.org</a>). Furthermore Distutils is not providing everything needed to work with another server than the Cheeseshop, like I will explain later in this post. So all Plone and Zope packages are uploaded there.</p>
<p>Therefore, pypi.python.org became a single point of failure when you need to build a Plone or Zope application. With the growth of the community, this means that the repository will get bigger and have to deal with more and more request. PyPI weight around 4 gigas at this time, of zip files and tarballs.</p>
<p>While the actual server is really fast, it makes it a bit hard to work when it is down. It didn&#8217;t happen often. Twice as far as I remember. But when it happens, the crowd that uses zc.buildout is frozen because they run buildouts several time per day. They can use cache of course, as long as those are up-to-date.</p>
<p>Some mirrors emerged, like <a href="http://release.ingeniweb.com/pypi.python.org-mirror" target="_blank">http://release.ingeniweb.com/pypi.python.org-mirror</a>. Some enhanced indexes were created as well, like <a href="http://download.zope.org/simple" target="_blank">http://download.zope.org/simple</a>, which is still referring to pypi.python.org but performs a bit of crawling to speed things up when a buildout uses it through easy_install.</p>
<p>But all of these are just enhancement to a cheeseshop-centric model.</p>
<p>Furthermore, in case of a private application, <strong>you do not want to see packages in the Cheeseshop but you might also want to provide developers a similar way to manage and use them.</strong></p>
<h4>Plone.org software center is dying !</h4>
<p>For public applications, given the fact that Distutils provides a simple way to push a package to a public location (one shell command), people have started to stop updating the <a href="http://plone.org/products"><em>Products</em></a> section of Plone.org. This happens because updating it means doing a whole lot more than the simple register+upload call. You need to login into the website, then manually upload the packages, then change the front page of the product if needed etc..</p>
<p>So being able to push packages to plone.org with the same set of commands, is the right solution for developers.</p>
<p>Pushing a package means uploading a public archive but it also means updating the front page for the given package, with the register command.</p>
<p>That what I worked on, at PloneSoftwareCenter level, continuing Sidnei&#8217;s work: making it act like Cheeseshop. Now the feature is ready and being alpha-tested at <a href="http://www.aclark.net/Members/aclark/plone-org-upgrade-update" target="_blank">new.plone.org</a></p>
<h4>Toward a distributed model</h4>
<p><img src="http://tarekziade.files.wordpress.com/2008/05/collective-dist.png?w=479&h=434" alt="Playing with several egg-based servers" width="479" height="434" /></p>
<p>What we will be able to do from there, is to distribute packages (in blue) to the Cheeseshop (2) as usual, but also to Plone.org (1). Having such a tool also allows people to run other cheeseshop-like servers, wether they are public (3) or private (4). This is useful when you are working on customer projects and do not wish to make their packages available to the world, or even if it is a public project, you do not want to push them to PyPi.</p>
<p>Furthermore, it allows having a bit of redundancy : your packages become available in several places, which is better. Think about the mirrors at Sourceforge, same thing here&#8230;</p>
<p>This distributed model is used at Ingeniweb, and in other companies I am starting to list (If you do please let me know, this is important to promote the tool).</p>
<h3>The new Plone Software Center (PSC)</h3>
<p>If you are extensively working with packages and buildouts, you should consider trying the new PSC, read <a href="http://tarekziade.wordpress.com/2008/03/20/how-to-run-your-own-private-pypi-cheeseshop-server/" target="_blank">http://tarekziade.wordpress.com/2008/03/20/how-to-run-your-own-private-pypi-cheeseshop-server/</a> for this. Each project now in the software center can hold several eggs, and it makes it possible to provide a nice deployment model for your teams: developer push packages releases in such a server <strong>with the distutils standards</strong>, while customers or deployers can build their applications by picking them up through their buildouts.</p>
<p>And it is in Plone, so you can provide extensive features, like a bug tracker, and all the sweet things Plonecan provide.</p>
<p>The work left to be done in PSC is :</p>
<ul>
<li>making the storage for archives (tgz, egg) pluggable so new storing strategies can be provided in separate packages, under the collective.psc namespace, I started this work in a branch.</li>
<li>finish the collective.psc.mirroring package, that will be used in plone.org to fill a system folder, in order to provide an Apache direct view over the archives stored. This will make zc.buildout / easy_install use this stream rather than hitting the Plone instance. Although the final goal will be to transform it into a storage strategy, but time is running and this is useful <strong>now</strong> for plone.org.</li>
<li>extensive tests on new.plone.org</li>
</ul>
<h3>collective.dist</h3>
<p>To be able to deal with several servers, I have released <a href="http://pypi.python.org/pypi/collective.dist" target="_blank">collective.dist</a> after the sprint (previously iw.dist). This package provides two new distutils commands: <strong>mupload</strong> and <strong>mregister</strong>, together with a new <strong>pypirc</strong> format.</p>
<p>Follow the documentation, and you will be set in a matter of minutes. This package is already used by many developers to make their life easier, and will help you when the new plone.org goes live.</p>
<h3>disutils evolution</h3>
<p>collective.dist is an evolution of distutils I have been working at Python level for months. It is available as a Python patch here : <a href="http://bugs.python.org/issue1858" target="_blank">http://bugs.python.org/issue1858</a>. mregister and mupload are just modified register and upload commands that makes it possible to interact with several PyPi-like servers, that&#8217;s it. PSC uses Distutils standards in any case, so it is possible to use the regular register and upload commands with it of course. It is just not convenient because you will need to have the same username and password on both CheeseShop and the third-party egg server (or change your pypirc file everytime :D)</p>
<p>So the patch, basically, just makes the -r option of distutils commands a 100% operational.</p>
<p>Now my job is to convince Python core developers it should be integrated into Python 2.6, and I am working on this. It is a logical evolution, but it sounds overkill to some people that does not have this kind of need: &#8220;Why changing that ? we have only one package server, which is the cheeseshop&#8221;.</p>
<p>It can also sound to some of them like I am (together with the team of 20 developers we have <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) the only person on earth that wishes it, but as soon as the new Plone.org will be online, a lot of people will start needing such a feature. But having it in 2.6 will make it available as a standard in Plone/Zope world in&#8230; a few years.</p>
<p>In any case, most of them agree in the fact that this change is logical and that the current pypirc format is not to be kept. So I guess it is just a matter of time and patience.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/87/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/87/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=87&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/05/06/plone-paris-sprint-wrapup-3-newploneorg-collectivedist-released/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>

		<media:content url="http://tarekziade.files.wordpress.com/2008/05/collective-dist.png" medium="image">
			<media:title type="html">Playing with several egg-based servers</media:title>
		</media:content>
	</item>
		<item>
		<title>Plone Paris Sprint wrapup, part #2: collective.buildbot released !</title>
		<link>http://tarekziade.wordpress.com/2008/05/02/plone-paris-sprint-wrapup-part-2-collectivebuildbot-released/</link>
		<comments>http://tarekziade.wordpress.com/2008/05/02/plone-paris-sprint-wrapup-part-2-collectivebuildbot-released/#comments</comments>
		<pubDate>Fri, 02 May 2008 09:24:55 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[quality]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<category><![CDATA[buildbot]]></category>

		<category><![CDATA[community]]></category>

		<category><![CDATA[parissprint2008]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=86</guid>
		<description><![CDATA[The Pimp my Buildbot project that was started here at Ingeniweb some time ago, to be able to set up a buildbot in a matter of minutes with zc.buildout, was continued during the sprint, and the guys did a great job on it.
It will be used here in customer projects with a Paster that adds [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://tarekziade.wordpress.com/2008/04/01/pimp-my-buildbot/" target="_blank">Pimp my Buildbot</a> project that was started here at Ingeniweb some time ago, to be able to set up a buildbot in a matter of minutes with zc.buildout, was continued during the sprint, and the guys did a great job on it.</p>
<p>It will be used here in customer projects with a Paster that adds buildbot support when a project starts, because it is a waste of time for the developers to set everything everytime.</p>
<p>Jean-Francois Roche, Kai Lautaportti and Gael Pasgrimaud added extensive configuration options (mail, scheduling), and made the SVN Poller works. This feature allows for instance to make the buildbot watch a SVN repository without having to add a hook in the server (post-commit hook for instance), when you don&#8217;t own it (SourceForge, collective, etc)</p>
<p>The tool is released in the <a href="http://svn.plone.org/svn/collective/collective.buildbot/trunk/" target="_blank">collective</a>, and available at the <a href="http://pypi.python.org/pypi/collective.buildbot" target="_blank">Cheeseshop</a> in one single package !</p>
<p>If you want to set a buildbot</p>
<ul>
<li>provide for each one of your project a buildout that has a test script</li>
<li>make sure the test script returns exit code (&#8211;with-exit-status with zope.testing)</li>
<li> create a buildout cfg file using collective.buildbot</li>
<li>run buildout, that&#8217;s it !</li>
<li>run the master, slaves scripts, and go to the /waterfall page</li>
</ul>
<p>Just try out our own <a href="http://buildbot.ingeniweb.com/waterfall" target="_blank">buildbot</a> by running this sequence:</p>
<pre>$ cd /tmp/
$ mkdir my_bot
$ cd my_bot/
$ svn co https://ingeniweb.svn.sourceforge.net/svnroot/ingeniweb/buildbot/trunk .
$ python bootstrap.py
$ bin/buildout
$ bin/master start
$ bin/linux_debian start   (that's our slave)</pre>
<p>You should have a buildbot running then at http://localhost:9000/waterfall</p>
<p>The tool, without the polling stuff, also works with Mercurial and Bzr, but probably needs more tests with these repositories. We also need to make sure the slaves works fine under Windows, and add a nice front page to the buildbot.</p>
<p>If you use it let us know !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=86&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/05/02/plone-paris-sprint-wrapup-part-2-collectivebuildbot-released/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Plone Paris Sprint wrapup, part #1: How do you use eggs and zc.buildout in your projects ?</title>
		<link>http://tarekziade.wordpress.com/2008/04/29/plone-paris-sprint-wrapup-part-1-how-do-you-use-eggs-and-zcbuildout-in-your-projects/</link>
		<comments>http://tarekziade.wordpress.com/2008/04/29/plone-paris-sprint-wrapup-part-1-how-do-you-use-eggs-and-zcbuildout-in-your-projects/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 13:02:57 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[parissprint2008]]></category>

		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[quality]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<category><![CDATA[deploying]]></category>

		<category><![CDATA[releasing]]></category>

		<category><![CDATA[zc.buildout]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=85</guid>
		<description><![CDATA[This is the first post of the wrapups I want to do about the sprint that we had in Paris last week-end. We had a Bird of Feather about how people use eggs and zc.buildout in their projects, how they release and deploy them.
There were some people from Headnet (Anton, Mustapha) and Infrae (Kit, Sylvain) [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is the first post of the wrapups I want to do about the sprint that we had in Paris last week-end. We had a Bird of Feather about how people use eggs and zc.buildout in their projects, how they release and deploy them.</p>
<p>There were some people from Headnet (Anton, Mustapha) and Infrae (Kit, Sylvain) and Ingeniweb (Me), and we compared a bit how we are working with eggs, zc.buildout etc.</p>
<p>That is what I love in our community: companies can share their knowledge and grow up all together, technically speaking.</p>
<p>We all have internal recipes, command-line scripts, and are all relatively happy with zc.buildout. This discussion was very instructive.</p>
<p>From there, I thaught it would be a good idea to launch a new project in the community, on the top of zc.buildout (and maybe zc.sourcerelease), that would provide a common set of tools and deploying best practices, for people that works with the buildout, no matter which framework they use (Silva, Plone, etc.)</p>
<p>The first step for this project is to find the common needs and see if we can join forces to build common tools. To start it up, I decided to wrap up and release our internal set of tools into a single package called <a href="http://pypi.python.org/pypi/iw.releaser/" target="_blank">iw.releaser</a> and publish it. This is the work I have done during the last months with the help of Gael, to help our team to work with zc.buildout in Plone Projects. It is Subversion dependent at this time.</p>
<p>I am expecting some feedback from Anton and Sylvain to see if we can make it a collective tool.</p>
<p>This package provides:</p>
<ul>
<li>a skeleton to build a project structure (buildout, packages; docs, etc.) so all projects have a standardized structure</li>
<li>a &#8216;release&#8217; distutils command that releases a package, upload it to the Cheeseshop or other servers, and send a shout out mail</li>
<li>a set of command line tools, that can be used to deploy a buildout. These commands are doing many things besides launching a buildout building (which is a bit different from zc.sourcerelease)</li>
</ul>
<p>This package is used at Ingeniweb for a few months now, and I tried to summarize how it is used in the <a href="http://pypi.python.org/pypi/iw.releaser/" target="_blank">docs</a>. I bet a lot of bugs will be found if you try it, so consider this package as a non-mature package yet.</p>
<p>Join us all ! So you will be able to release and deploy your buildout-based apps with a few command-line calls, <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/85/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/85/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=85&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/04/29/plone-paris-sprint-wrapup-part-1-how-do-you-use-eggs-and-zcbuildout-in-your-projects/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Plone Paris Sprint going on, quick wrapup</title>
		<link>http://tarekziade.wordpress.com/2008/04/27/plone-paris-sprint-going-on-quick-wrapup/</link>
		<comments>http://tarekziade.wordpress.com/2008/04/27/plone-paris-sprint-going-on-quick-wrapup/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 10:51:11 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[parissprint2008]]></category>

		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=84</guid>
		<description><![CDATA[We are working here at the Paris Sprint, and many things are going on. I wanted to do a quick wrapup before a longer and final wrapup.
Here&#8217;s all the tasks going on (I might miss some):

Youenn and Cartsen are working on plone.recipe.apache, that will let you build and/or setup Apache in a buildout
Michel presented a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We are working here at the Paris Sprint, and many things are going on. I wanted to do a quick wrapup before a longer and final wrapup.</p>
<p>Here&#8217;s all the tasks going on (I might miss some):</p>
<ul>
<li><strong>Youenn</strong> and <strong>Cartsen</strong> are working on <a href="http://svn.plone.org/svn/collective/buildout/plone.recipe.apache/" target="_blank"><strong>plone.recipe.apache</strong></a>, that will let you build and/or setup Apache in a buildout</li>
<li><strong>Michel</strong> presented a very interested talk yesterday on how <strong>insecure</strong> Plone can be (Man in the Middle attacks, etc), on the various existing solutions, and works on things to enhance it</li>
<li><strong>Maik</strong> leads a <a href="http://www.openplans.org/projects/funittest/project-home" target="_blank"><strong>Funittest</strong></a> group, teaching the tool to people, and enhancing i</li>
<li><strong>Olivier</strong> and <strong>Christophe</strong> are working on <a href="http://grok.zope.org/" target="_blank"><strong>Grok</strong></a> to learn it. Christophe worked yesterday on filling content to the new zope.org web site</li>
<li><strong>Matthew</strong>, <strong>Alex</strong> and <strong>I</strong> are working on <a href="http://pypi.python.org/pypi/Products.PloneSoftwareCenter" target="_blank"><strong>PloneSoftwareCenter</strong></a> and <strong>plone.org</strong>, so the website can be ready to move to an egg-enabled Plone 3. wOOt !</li>
<li><strong>Gael</strong>, <strong>Jean-Francois</strong> (and <strong>Kai</strong> yesterday) are working on &#8220;<a href="http://tarekziade.wordpress.com/2008/04/01/pimp-my-buildbot/" target="_blank"><strong>Pimp my Buildbot</strong></a>&#8220;: configure and launch a complete buildbot system in a matter of minutes, using a simple buildout cfg file and running a simple command. I think this could be used for Plone repository and the collective as well ! The tool will be move to the collective at the end of the sprint.</li>
<li><strong>Gilles</strong>, <strong>Cyrille</strong>, and others (sorry, can&#8217;t keep up with all names), are working on <a href="http://products.ingeniweb.com/catalog/iw.fss" target="_blank"><strong>iw.fss</strong></a> (FileSystemStorage for plone 3)</li>
<li><strong>Mustapha</strong> and <strong>Anton</strong> are making sweet things in <a href="http://plone.org/products/zopeskel" target="_blank"><strong>ZopeSkel</strong></a></li>
<li><strong>Anton</strong> worked also on finding the best way to do aysnhronous tasks in Plone<strong><br />
</strong></li>
<li>There&#8217;s a big <a href="http://www.plonegov.org/"><strong>PloneGov</strong></a> team that is working on making the tool friendly with various government systems.</li>
<li><strong>Jean-Nicolas</strong> leads the work on <strong>kss/eventPush</strong>, so we all get a upload widget with live feedback (no flash inside ;))</li>
<li><strong>Godefroid</strong> and <strong>Lennart</strong> are <strong>Grok</strong>-ing as well;</li>
<li><strong>Christophe</strong> is preparing <a href="http://dev.plone.org/collective/browser/collective.kss.fly_gui" target="_blank"><strong>collective.kss.fly_guy</strong></a>, a tool that provides drag and drop in folder_contents</li>
<li><strong>Harito</strong>, <strong>Christian</strong> and <strong>Wim</strong> are making a sweet new theme for Plone: &#8220;<strong>Notre Dame</strong>&#8220;. The theme is kept quite generic, with all the plone tools/portlets designed in blue tones, kept in mind to be easy adjustable and changed to other color schemes. It will be a table-less egg for Plone 3.</li>
</ul>
<p>More blogging tomorrow, I need to get back to my task <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=84&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/04/27/plone-paris-sprint-going-on-quick-wrapup/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Help Plone.org, help Alex Clark</title>
		<link>http://tarekziade.wordpress.com/2008/04/21/help-ploneorg-help-alex-clark/</link>
		<comments>http://tarekziade.wordpress.com/2008/04/21/help-ploneorg-help-alex-clark/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 12:18:40 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[plone]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[sprint]]></category>

		<category><![CDATA[zope]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=83</guid>
		<description><![CDATA[Alex is trying to raise money for his travel expenses, to go to the Plone Paris Sprint.
Alex will work on making Plone.org go Plone 3, so this is important !
Help him here : http://www.aclark.net/Members/aclark/help-me-upgrade-plone.org
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Alex is trying to raise money for his travel expenses, to go to the <a href="http://www.openplans.org/projects/plone-3-paris-sprint/project-home" target="_blank">Plone Paris Sprint</a>.</p>
<p>Alex will work on making Plone.org go Plone 3, so this is important !</p>
<p>Help him here : <a href="http://www.aclark.net/Members/aclark/help-me-upgrade-plone.org" target="_blank">http://www.aclark.net/Members/aclark/help-me-upgrade-plone.org</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/83/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/83/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=83&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/04/21/help-ploneorg-help-alex-clark/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Pycon FR is not competing with EuroPython</title>
		<link>http://tarekziade.wordpress.com/2008/04/13/pycon-fr-is-not-concurrencing-europython/</link>
		<comments>http://tarekziade.wordpress.com/2008/04/13/pycon-fr-is-not-concurrencing-europython/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 10:59:00 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[documentation]]></category>

		<category><![CDATA[pycommunity]]></category>

		<category><![CDATA[pycon]]></category>

		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=82</guid>
		<description><![CDATA[edit: I have changed the blog title, which was not correct in English, thanks Maik  
I wanted to react on Martinj&#8217;s blog to make things clear about Pycon FR
Background
First of all here&#8217;s a little background about Pycon FR.
Afpy (Association Francophone Python) is a french Python user group  created four years ago. The group [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>edit</strong>: I have changed the blog title, which was not correct in English, thanks Maik <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I wanted to react on <a href="http://faassen.n--tree.net/blog/view/weblog/2008/04/12/0" target="_blank">Martinj&#8217;s blog</a> to make things clear about <a href="http://fr.pycon.org" target="_blank">Pycon FR</a></p>
<h3>Background</h3>
<p>First of all here&#8217;s a little background about Pycon FR.</p>
<p><a href="http://afpy.org" target="_blank">Afpy</a> (Association Francophone Python) is a french Python user group  created four years ago. The group counts around 100 members and is the only one of this size in french-speaking countries as far as we know. It has members from France, Belgium, Canada and North Africa countries.</p>
<p>Many meetings are organized throughout the year, mainly in Paris, and sometimes in Charleroi in Belgium.</p>
<p>An important event took place at the &#8220;Cité des sciences&#8221; in Paris last summer, called &#8220;Journées Python&#8221;  We had around 80 attendees and a rich program was given during two days. Topics where presented by french speaking people from France and Belgium, and we had talks about AI, Django, Zope, TuxDroid, etc</p>
<p>Some videos are available on the web, you can probably reach them from here:  <a href="http://video.google.fr/videosearch?q=journees.afpy.org" target="_blank">http://video.google.fr/videosearch?q=journees.afpy.org</a></p>
<p>The conference was 100% free for attendees.  We also decided to chose carefully the dates so the conference would not compete with other events like Europython.</p>
<p>This event was a *true* success.</p>
<p>This event is now called Pycon FR, to be in the same line of what happens in some other countries. This makes a lot of sense indeed, to have national Python events, with standardized names.</p>
<h3>Attendees</h3>
<p>Pycon FR attendees are mainly people that speaks english but for some of them not enough to easily follow English talks. Most of those people would not make it to Europython because of this language barrier, and a national conference held in Paris is something that was quite missing at this time, for them.</p>
<p>So PyCon FR is just a sign of the growing interest about Python, and should be seen as a 100% positive and constructive thing, believe me.</p>
<p>Together with Europython and Pycon US, the &#8220;local&#8221; PyCons are in my opinion, a very good thing to spread the good word.  We will, like last year, promote Europython there. Maybe we could  even do a survey this year to know exactly who goes to Europython, etc.</p>
<h3>Pycon FR expansion plans</h3>
<p>When I said in my last blog entry that we were working on making it less french-centric, and having international attendees, I should have explained it better to make sure no one thinks Pycon FR might be a bad thing for Europython.</p>
<ul>
<li>If we do invite international speakers, it will be done only if we are able to provide a live translation system.</li>
<li>The event date will always be picked carefully, as usual, so it does not compete with Europython.</li>
</ul>
<h3>Europython and local PyCons expansion</h3>
<p>Here&#8217;s my opinion about what Europython strategy could be: since it is an international english-speaking event that gathers a lot of people. It could be the seed to set up a local Pycon event in places where it does not exist yet, using the momentum of the event.</p>
<p>This could be done by working with the local user group this way, by organizing maybe two years in a row Europython there.  So, maybe we could see &#8220;Pycon Lithunia&#8221; next year ? Then move EuroPython to Amsterdam and see &#8220;Pycon The Netherlands&#8221; in two years ?</p>
<p>Europython exists to promote the language at an international level, so that could be a good way to spread imho.</p>
<p>But please, pretty please, don&#8217;t see local Pycons as Europython competitors, this is not true, this happens just because Python is growing.</p>
<p>Everyone should be happy about that I think. I disagree with the fact that each conference might fight to have the &#8220;best international speakers&#8221; for a very simple reason: the number of speakers is growing too, and I don&#8217;t think either Pycon either EuroPython will ever miss of interesting talks.</p>
<p>The next smart move I think is to organize and synchronize all these events, and that is where the Python Software Foundation has a role to play in my opinion. They have started anyway, and I am really confident about what will happen next.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=82&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/04/13/pycon-fr-is-not-concurrencing-europython/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
		<item>
		<title>Pycon FR is coming !</title>
		<link>http://tarekziade.wordpress.com/2008/04/12/pycon-fr-is-coming/</link>
		<comments>http://tarekziade.wordpress.com/2008/04/12/pycon-fr-is-coming/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 07:31:31 +0000</pubDate>
		<dc:creator>Tarek Ziadé</dc:creator>
		
		<category><![CDATA[conference]]></category>

		<category><![CDATA[pycon]]></category>

		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://tarekziade.wordpress.com/?p=80</guid>
		<description><![CDATA[PyCon FR is coming up !  We published yesterday the final program, and I must say that this second annual meeting of Pythoneers in Paris, looks very good.
Extracts:

Why you should learn Python
GraphViz with GvGen
Gene search
CouchDB
PyPy
Quality Assurance
Scapy
Zope 3
zc.buildout
Django
WSGI
etc&#8230;

This is going to be two intense days in Paris, so if you are around, please join us, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://fr.pycon.org" target="_blank">PyCon FR</a> is coming up !  We published yesterday <a href="http://fr.pycon.org/programme" target="_blank">the final program</a>, and I must say that this second annual meeting of Pythoneers in Paris, looks very good.</p>
<p>Extracts:</p>
<ul>
<li>Why you should learn Python</li>
<li>GraphViz with GvGen</li>
<li>Gene search</li>
<li>CouchDB</li>
<li>PyPy</li>
<li>Quality Assurance</li>
<li>Scapy</li>
<li>Zope 3</li>
<li>zc.buildout</li>
<li>Django</li>
<li>WSGI</li>
<li>etc&#8230;</li>
</ul>
<p>This is going to be two intense days in Paris, so if you are around, please join us, it&#8217;s free.</p>
<p>Paris - <a href="http://fr.pycon.org/presentation" target="_blank">Cité des Sciences et de la Vilette</a> - 16/17 May .</p>
<p>The talks will be in french, but the organization team works hard to have english talks as well next year. Anyway, you don&#8217;t need to speak french to join us and have a good time <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tarekziade.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tarekziade.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tarekziade.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tarekziade.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tarekziade.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tarekziade.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tarekziade.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tarekziade.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tarekziade.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tarekziade.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tarekziade.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tarekziade.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tarekziade.wordpress.com&blog=448161&post=80&subd=tarekziade&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://tarekziade.wordpress.com/2008/04/12/pycon-fr-is-coming/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/tarekziade-128.jpg" medium="image">
			<media:title type="html">tarek</media:title>
		</media:content>
	</item>
	</channel>
</rss>