Examples/modpython.py@e59e5f279676
Examples/modpython.py
Sat, 02 Jan 2021 11:21:13 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 02 Jan 2021 11:21:13 +0100
- branch
- maintenance
- changeset 7934
- e59e5f279676
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Updated changelog to prepare a new release.
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