Examples/modpython.py

Sat, 27 Dec 2014 17:18:17 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 27 Dec 2014 17:18:17 +0100
changeset 3996
2b3684f5694d
parent 0
de9c2efb9d02
permissions
-rw-r--r--

Updated the plug-in documentation.
(grafted from 2af8bb3b7dc4befb5f9600d9ab81d1ee3a8a4450)

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