vote up 6 vote down star
1

I've been playing with mod_python in apache2 which seems to work differently than python does in general - there's a bit different syntax and things you need to do. It's not very well documented and after a few days of playing with it, I'm really not seeing the point of mod_python at all, especially when things like php are so well documented and available.

I can see how Python works well for system programming, but can anyone give any information as to why I shouldn't just dump python for a web-based application?

flag
"there's a bit different syntax" Please provide the specific example for this. – S.Lott Oct 19 '08 at 1:22

2 Answers

vote up 2 vote down

mod_python wasn't really made for doing basic webprogramming. I suggest you go with a framework:

My suggestion is to give python some time. It's easy to get simplicity and lack of power confused. :)

link|flag
vote up 14 vote down
  1. Don't use mod_python. A common mistake is take mod_python as "mod_php, but for python" and that is not true. Use mod_wsgi instead.
  2. Choose a web framework. CherryPy. Pylons. Django.
  3. Look at wsgi.org
link|flag
"Use mod_wsgi instead" Seconded! Or SCGI if you find it easier not to be running in the same process. – ephemient Oct 19 '08 at 1:24
You can run mod_wsgi in a separate process as well. Try reading about "mod_wsgi daemon mode." – Jason Baker Oct 19 '08 at 1:48
mod_wsgi's daemon mode is not available under Windows, though. – Matthew Trevor Oct 20 '08 at 2:24

Your Answer

Get an OpenID
or

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