摘要: #coding=utf8import web urls = ( '/(.*)/', 'redirect', '/', 'hello', '/post', 'to_mcu',)app = web.application(urls, globals())class hello: def GET(self): return "<form action='/post' method='post'><p><button type=' 阅读全文
posted @ 2013-05-03 17:41 catmelo 阅读(244) 评论(0) 推荐(0) 编辑