Examples/modpython.py@8f67a5380083
Examples/modpython.py
Thu, 19 Apr 2018 19:35:14 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 19 Apr 2018 19:35:14 +0200
- branch
- make_support
- changeset 6262
- 8f67a5380083
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Branch make_support has been merged with 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