web.py模塊使用

web.py模塊python

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()
相關文章
相關標籤/搜索