from mod_python import apachedef handler(req): req.content_type = "text/plain" req.write("Hello World!") return apache.OK