Examples/modpython.py

Tue, 30 Dec 2014 12:03:21 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 30 Dec 2014 12:03:21 +0100
branch
Py3_only
changeset 4006
0b4b5ab05afc
parent 0
de9c2efb9d02
permissions
-rw-r--r--

Branch Py3_only is no longer maintained.

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

eric ide

mercurial