What is a good CMS written in Python (and not Plone)? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:57:42Zhttp://stackoverflow.com/feeds/question/184742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone10What is a good CMS written in Python (and not Plone)?Seth2008-10-08T20:29:11Z2009-03-21T06:56:45Z
<p>I've been doing CMS sites for clients using Joomla for a while now, but I've been migrating a lot of my coding over to Python and have been looking for a good CMS solution that's written in Python.</p>
<p>Most of what I've seen so far is either Zope based (Plone) or Django based. I'm not totally opposed to something written in a Python framework such as Django, but I don't want to use Zope (seems to me to have too much "bloat" for something like this).</p>
<p>Is there anything in the Python community like Joomla? I know I could always "roll my own", but I'd rather use something pre-built (if there is such a thing).</p>
<p>Thanks for your time,
Seth</p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/184768#1847687Answer by Jason Baker for What is a good CMS written in Python (and not Plone)?Jason Baker2008-10-08T20:35:20Z2008-10-08T20:35:20Z<p>Unfortunately, there's really not a lot of mature CMSes out there for Python. Here are a couple of choices though:</p>
<ul>
<li><a href="http://orangoo.com/skeletonz/" rel="nofollow">Skeletonz</a> (still in beta)</li>
<li><a href="http://www.pylucid.org/" rel="nofollow">PyLucid</a> (haven't actually tried them out, but couldn't get past the constant grammatical and spelling errors) (which are probably because it's made by Germans)</li>
<li><a href="http://moinmo.in/" rel="nofollow">MoinMoin</a> is very mature, but isn't really made for CMS stuff. With that said, if you spend some time with it, you can mod it to do CMS-like stuff.</li>
</ul>
<p>So with that said, your best bet may actually be to roll your own in Django or something similar. </p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/184841#1848410Answer by swilliams for What is a good CMS written in Python (and not Plone)?swilliams2008-10-08T20:51:38Z2008-10-08T20:51:38Z<p>The code that runs <a href="http://www.djangoproject.com/" rel="nofollow">djangoproject.com</a> is good, but not really released as a package. You can grab the <a href="http://code.djangoproject.com/browser/djangoproject.com/django_website/" rel="nofollow">source</a> though, and tweak it for your needs. </p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/184892#1848925Answer by Jason Etheridge for What is a good CMS written in Python (and not Plone)?Jason Etheridge2008-10-08T21:00:08Z2008-10-08T21:00:08Z<p>I did a similar investigation a while ago, and settled on Plone. It does wrap most of the Zope complexity fairly well, but it continues to seem heavy-weight for what it does. Then again, the functionality offered is fairly substantial, so some trade-off in terms of increased complexity should be expected.</p>
<p>I'd recommend giving Plone a go; the unified installer means you can build and run it up very easily (it includes its own version of Python, stuck as it is on 2.4).</p>
<p>All that said, if I wanted to build another CMS-based site, I'd go with something non-Python, such as Drupal (PHP).</p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/185002#1850026Answer by Peter Hoffmann for What is a good CMS written in Python (and not Plone)?Peter Hoffmann2008-10-08T21:25:57Z2008-10-08T21:25:57Z<p>The <strong><a href="http://pinaxproject.com/" rel="nofollow">pinax</a></strong> project is a kind of <strong>django</strong> bundle with some modules to build community sites. It is a good start to build your cms on it. There is a <a href="http://jtauber.com/blog/2008/09/16/my_talk_on_pinax_at_djangocon/" rel="nofollow">video</a> available presenting it a djangoconf.</p>
<p>Feature List:</p>
<ul>
<li>openid support</li>
<li>email verification</li>
<li>password management</li>
<li>site announcements</li>
<li>a notification framework</li>
<li>user-to-user messaging</li>
<li>friend invitation (both internal and external to the site)</li>
<li>a basic twitter clone</li>
<li>oembed support</li>
<li>gravatar support</li>
<li>interest groups (called tribes)</li>
<li>projects with basic task and issue management</li>
<li>threaded discussions</li>
<li>wikis with multiple markup support</li>
<li>blogging</li>
<li>bookmarks</li>
<li>tagging</li>
<li>contact import (from vCard, Google or Yahoo)</li>
<li>photo management</li>
</ul>
<p>(from their website)</p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/226119#2261190Answer by for What is a good CMS written in Python (and not Plone)?2008-10-22T14:59:15Z2008-10-22T14:59:15Z<p>You know, you can use a different back-end with Plone if you don't like Zope.</p>
<p><a href="http://plone.org/events/conferences/2008-washington-dc/agenda/relational-database-applications-with-plone-and-sqlalchemy/index_html/" rel="nofollow">http://plone.org/events/conferences/2008-washington-dc/agenda/relational-database-applications-with-plone-and-sqlalchemy/index_html/</a></p>
http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/668887#668887-1Answer by Miuler for What is a good CMS written in Python (and not Plone)?Miuler2009-03-21T06:56:45Z2009-03-21T06:56:45Z<h2>Python</h2>
<p>zope2 + CMS = plone < Zope3 + CMS = Z3Ext</p>
<p>(<a href="http://z3ext.net/" rel="nofollow">http://z3ext.net/</a>)</p>