Examples/modpython.py@bf799f79455c
Examples/modpython.py
Wed, 13 Jul 2022 15:34:50 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 13 Jul 2022 15:34:50 +0200
- branch
- with_python2
- changeset 9225
- bf799f79455c
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Revisions <no_multi_processing, Variables Viewer, with_python2> closed.
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