Examples/modpython.py@6ce0678583e5
Examples/modpython.py
Tue, 30 Jul 2019 19:15:02 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 30 Jul 2019 19:15:02 +0200
- changeset 7096
- 6ce0678583e5
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
IrcWidget: fixed an issue disconnecting the IRC widget.
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