Examples/modpython.py@51bc725dab6a
Examples/modpython.py
Thu, 17 Dec 2020 14:32:29 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 17 Dec 2020 14:32:29 +0100
- branch
- multi_processing
- changeset 7886
- 51bc725dab6a
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Closed the <multi_processing> branch after merging it into the <default> branch.
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