Examples/modpython_dbg.py@856b3b70cea9
Examples/modpython_dbg.py
Sat, 03 Dec 2016 15:08:46 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 03 Dec 2016 15:08:46 +0100
- branch
- APIs
- changeset 5360
- 856b3b70cea9
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Branch <APIs> closed.
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