vote up 10 vote down star
6

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.

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).

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).

Thanks for your time, Seth

flag

57% accept rate

6 Answers

vote up 7 vote down check

Unfortunately, there's really not a lot of mature CMSes out there for Python. Here are a couple of choices though:

  • Skeletonz (still in beta)
  • PyLucid (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)
  • MoinMoin 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.

So with that said, your best bet may actually be to roll your own in Django or something similar.

link|flag
vote up -1 vote down

Python

zope2 + CMS = plone < Zope3 + CMS = Z3Ext

(http://z3ext.net/)

link|flag
vote up 0 vote down

You know, you can use a different back-end with Plone if you don't like Zope.

http://plone.org/events/conferences/2008-washington-dc/agenda/relational-database-applications-with-plone-and-sqlalchemy/index_html/

link|flag
1  
No - Plone relies completely on Zope. You don't have to use Zope's native data storage, and indeed lots of people prefer to put an RDBMS under it. Plone without Zope doesn't make any sense. – Dominic Cronin Jan 22 at 14:46
vote up 6 vote down

The pinax project is a kind of django bundle with some modules to build community sites. It is a good start to build your cms on it. There is a video available presenting it a djangoconf.

Feature List:

  • openid support
  • email verification
  • password management
  • site announcements
  • a notification framework
  • user-to-user messaging
  • friend invitation (both internal and external to the site)
  • a basic twitter clone
  • oembed support
  • gravatar support
  • interest groups (called tribes)
  • projects with basic task and issue management
  • threaded discussions
  • wikis with multiple markup support
  • blogging
  • bookmarks
  • tagging
  • contact import (from vCard, Google or Yahoo)
  • photo management

(from their website)

link|flag
vote up 5 vote down

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.

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).

All that said, if I wanted to build another CMS-based site, I'd go with something non-Python, such as Drupal (PHP).

link|flag
can elaborate why you'd not go with python? – Javier Oct 9 '08 at 14:50
vote up 0 vote down

The code that runs djangoproject.com is good, but not really released as a package. You can grab the source though, and tweak it for your needs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.