#!/usr/bin/env python import web from apihelper import info urls = ( '/(.*)', 'docput' ) head = """ web.py documentation

web.py documentation

""" class docput: def GET(self, name): print head info(web) print "
" if __name__ == "__main__": #web.runwsgi = web.runfcgi # force to run as Fast CGI web.run(urls)