Examples/modpython_dbg.py@2602857055c5
Examples/modpython_dbg.py
Sun, 14 Apr 2019 15:09:21 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 14 Apr 2019 15:09:21 +0200
- changeset 6942
- 2602857055c5
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Major restructuring of the source tree to get prepared for a setup.py based installation.
from mod_python import apache
apache.initDebugger('/Path/To/modpython_dbg.py')
def handler(req):
req.content_type = "text/plain"
req.send_http_header()
req.write("Hello World!\n")
return apache.OK