Graham Dumpleton
graham.dumpleton at gmail.com
Tue Dec 11 16:53:14 EST 2007
If you need portability, then use WSGI as a basis for your application. That way you can run it on mod_python, mod_wsgi, cgi, fastcgi, scgi or plain old Python web servers. Graham On 12/12/2007, Bart <scarfboy at gmail.com> wrote: > > Can I or not make the functions of mod_python run in a web server wrote > > in python. Or the mod_python functions is exclusvity of Apache? > > mod_python itself is an apache module - it's integrated and relies on > apache for some of its functionality, so can't run without it. > > If you're looking to port handler code currently written for m_p > to something else, that may be easy enough to do if it doesn't > use apache via m_p, and is otherwise not entangled. > > --Bart > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://mailman.modpython.org/mailman/listinfo/mod_python >
|