<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Python Style Plugins Made Easy</title>
	<atom:link href="http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/</link>
	<description>Never knowingly knowing narwhals</description>
	<lastBuildDate>Sun, 10 May 2009 11:31:30 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Blaine</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2294</link>
		<dc:creator>Blaine</dc:creator>
		<pubDate>Tue, 10 Jun 2008 15:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2294</guid>
		<description>I&#039;ve been looking for something like this, exactly.  Thanks!

I had managed to hack up something using isinstance() and looping through dir(filename)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been looking for something like this, exactly.  Thanks!</p>
<p>I had managed to hack up something using isinstance() and looping through dir(filename)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bminews.com</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2293</link>
		<dc:creator>bminews.com</dc:creator>
		<pubDate>Mon, 09 Jun 2008 19:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2293</guid>
		<description>&lt;strong&gt;Python Style Plugins Made Easy...&lt;/strong&gt;

How to guide for writing and loading plugins for a Python application....</description>
		<content:encoded><![CDATA[<p><strong>Python Style Plugins Made Easy&#8230;</strong></p>
<p>How to guide for writing and loading plugins for a Python application&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dazza</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2292</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Mon, 09 Jun 2008 15:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2292</guid>
		<description>@kib2: Cheers for the link, it looks a lot easier then playing with __dict__s. Thanks.</description>
		<content:encoded><![CDATA[<p>@kib2: Cheers for the link, it looks a lot easier then playing with __dict__s. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kib2</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2291</link>
		<dc:creator>kib2</dc:creator>
		<pubDate>Mon, 09 Jun 2008 14:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2291</guid>
		<description>Hi dazza,

Armin R. has written an article with the __subclasses__() methods here :

http://lucumr.pocoo.org/blogarchive/python-plugin-system

See you.</description>
		<content:encoded><![CDATA[<p>Hi dazza,</p>
<p>Armin R. has written an article with the __subclasses__() methods here :</p>
<p><a href="http://lucumr.pocoo.org/blogarchive/python-plugin-system" rel="nofollow">http://lucumr.pocoo.org/blogarchive/python-plugin-system</a></p>
<p>See you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dazza</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2290</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Mon, 09 Jun 2008 07:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2290</guid>
		<description>@stargaming: The only advantage for me is that I didn&#039;t know __subclasses__() existed! Thanks, I&#039;ll look in to that :)</description>
		<content:encoded><![CDATA[<p>@stargaming: The only advantage for me is that I didn&#8217;t know __subclasses__() existed! Thanks, I&#8217;ll look in to that <img src='http://www.luckydonkey.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stargaming</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2289</link>
		<dc:creator>stargaming</dc:creator>
		<pubDate>Mon, 09 Jun 2008 05:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2289</guid>
		<description>Is there any advantage of the module __dict__ hassle over just using Plugin.__subclasses__()?</description>
		<content:encoded><![CDATA[<p>Is there any advantage of the module __dict__ hassle over just using Plugin.__subclasses__()?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petro</title>
		<link>http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/comment-page-1/#comment-2277</link>
		<dc:creator>Petro</dc:creator>
		<pubDate>Sat, 10 May 2008 21:09:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2008/01/02/python-style-plugins-made-easy/#comment-2277</guid>
		<description>Good example. However, it there is a slight problem with the directory name that is passed to the &quot;find_subclasses&quot; function. The code works better without &quot;./&quot; from the path to the plugins directory.

klasses = find_classes(&quot;pluginsfolder&quot;, Plugin)</description>
		<content:encoded><![CDATA[<p>Good example. However, it there is a slight problem with the directory name that is passed to the &#8220;find_subclasses&#8221; function. The code works better without &#8220;./&#8221; from the path to the plugins directory.</p>
<p>klasses = find_classes(&#8221;pluginsfolder&#8221;, Plugin)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
