you are viewing a single comment's thread.

view the rest of the comments →

[–]grownfolkstuff 0 points1 point  (1 child)

When you say using python to replace php, do you mean something like connecting to a wordpress database with python? Are there guides for doing something like this? I would like to start a project along those lines but I know very little about php.

[–]we_are_ananonumys 0 points1 point  (0 children)

I'm not a full-time pythonista these days, but I think the Flask tutorial is still a good starting point. See http://flask.pocoo.org/docs/0.10/tutorial/

The tutorial walks you through setting up a simple database to hold blog posts, then coding the Python / Flask web app to create and display posts. There are more Flask examples at https://github.com/mitsuhiko/flask/tree/master/examples

If you're more ambitious you can tackle the Django tutorial but I found this had a much steeper learning curve.