web.py模块使用

web.py模块

import time
import web

urls=("/",'hello')
class hello():
    def GET(self):
        return (time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
if __name__ =="__main__":
    app=web.application(urls,globals())
    app.run()

  

posted on 2019-04-05 16:33  杨秀峰blog  阅读(158)  评论(0编辑  收藏  举报

导航