python web實例

#引入包 import web #定義訪問路徑 urls = ( '/(.*)', 'hello' ) #定義app app = web.application(urls, globals()) #定義訪問類 class hello: def GET(self, name): print name ret
相關文章
相關標籤/搜索