Processing HTML form

Grant Edwards invalid at invalid.invalid
Thu Jun 17 17:45:05 EDT 2010


On 2010-06-17, Bradley Hintze <bradley.h at aggiemail.usu.edu> wrote:

> I am on Mac OSX 10.6, server is apache. If I do get this working we
> will move it to the main server which also serves apache, i believe.I
> dont think I want a whole new server, I'd like to serve from the
> apache framework if possible.

There are a couple different ways to integrate python code into
apache. You can use the normal CGI API where apache runs external
programs written in Python:

  http://docs.python.org/library/cgi.html
  
  http://gnosis.cx/publish/programming/feature_5min_python.html
  http://www.cs.virginia.edu/~lab2q/lesson_1/
  http://www.upriss.org.uk/python/PythonCourse.html
  
Or you can embed Python into apache so that it's faster and you can do
some more sophisticated stuff that's above my head:

  http://www.modpython.org/
  http://onlamp.com/pub/a/apache/2003/04/10/apacheandpython.html

More on both of the above at

  http://www.google.com/search?q=apache+python
  
There are people on the list far more experienced with Python+Apache
than I, so I'll leave it at that.

-- 
Grant Edwards               grant.b.edwards        Yow! ... he dominates the
                                  at               DECADENT SUBWAY SCENE.
                              gmail.com            



More information about the Python-list mailing list