Examples/modpython.py@786d97a08a14
Examples/modpython.py
Sat, 24 May 2014 17:11:12 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 24 May 2014 17:11:12 +0200
- changeset 3612
- 786d97a08a14
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Extended the install script and fixed a few issue related to installations with Python2.
from mod_python import apache
def handler(req):
req.content_type = "text/plain"
req.send_http_header()
req.write("Hello World!\n")
return apache.OK