What is the closest thing to WordPress in python instead of php?

Aufwind picture Aufwind · May 19, 2011 · Viewed 28.2k times · Source

What is the closest thing to WordPress in python instead of php?

WordPress is known for its simplicity. You donwload it, throw it on your server, make some edits to a config file and you are done. Afterwords you can pick a nice theme and edit it a little bit and voilá your homepage (with blog functionality) is ready.

I wondered if there is a python equivalent to this. I am more skilled in python then in PHP and I like the way you handle things in python better then in PHP. Further more I have little time to read up about a complicated web framework and need something, that works out of the box.

In Detail, I want

  1. a simple and proper looking static homepage.
  2. to add some Javascript driven Modules to it. Like the SIMILE Timeline and Google Maps.
  3. to exchange data with a MySQL Server.
  4. to have a search form for the database.
  5. to display content from the database in proper lists or tables.

What would you recommend?

Answer

zeekay picture zeekay · May 19, 2011

There is another project worth mentioning not on the Python wiki blog software page, mezzanine. Built on top of Django, it certainly angles to be an all encompassing blog solution, and even lets you import your old wordpress posts (if you wanted to migrate). Django is a great project in general, so it gives you a good base to do anything you want.

If you are just interested in throwing together a blog, or a site which will have similarly static content, you might want to check out hyde, which is a static site generator, similar to ruby's jekyll. It's a pretty neat approach.