Examples/modpython_dbg.py@de779a22396a
Examples/modpython_dbg.py
Tue, 20 Aug 2019 17:07:44 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 20 Aug 2019 17:07:44 +0200
- branch
- micropython
- changeset 7144
- de779a22396a
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Revision <7140> 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