码迷,mamicode.com
首页 > Web开发 > 详细

web.py模块使用

时间:2019-04-05 16:52:57      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:localtime   str   url   %s   port   使用   run   ret   div   

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()

  

web.py模块使用

标签:localtime   str   url   %s   port   使用   run   ret   div   

原文地址:https://www.cnblogs.com/yangxiufeng/p/10659052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!