Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 585
Aufwind Avatar asked May 19 '11 02:05

Aufwind


2 Answers

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.

like image 119
zeekay Avatar answered Sep 19 '22 04:09

zeekay


I'm not sure what you are looking for, but here is a list of a bunch of blogging software written in python:

http://wiki.python.org/moin/PythonBlogSoftware

like image 43
d-_-b Avatar answered Sep 23 '22 04:09

d-_-b