Examples/modpython_dbg.py@d952d3ffc50d
Examples/modpython_dbg.py
Sat, 23 Feb 2019 16:07:02 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 23 Feb 2019 16:07:02 +0100
- branch
- pypi
- changeset 6808
- d952d3ffc50d
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Development of pip interface finished.
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