web.py笔记ctx
http://webpy.org/cookbook/ctx
?
这个东西蛮朴素的。。。
?
import web urls = ( '/(.*)', 'hello')app = web.application(urls, globals())class hello: def GET(self, name): client = [ web.ctx.env.get('HTTP_REFERER', 'http://google.com') , web.ctx.ip , web.ctx.host , web.ctx.status , web.ctx.headers ] return clientif __name__ == "__main__": app.run()?