Examples/modpython.py

Tue, 30 Dec 2014 11:06:45 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 30 Dec 2014 11:06:45 +0100
changeset 4003
01abb0f058d2
parent 0
de9c2efb9d02
permissions
-rw-r--r--

Updated the README file.
(grafted from c30100d0729fcb27a3dda664607224515b48a1cf)

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