前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python 练习 后台返回当前时间

python 练习 后台返回当前时间

作者头像
py3study
发布2020-01-17 13:16:14
6640
发布2020-01-17 13:16:14
举报
文章被收录于专栏:python3

新建一个 current_time.html 文件, !cur_time! 用来替换

代码语言:javascript
复制
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>current_time: !cur_time!</h1>
</body>
</html>

新建一个 server.py 文件

代码语言:javascript
复制
from wsgiref.simple_server import make_server
import time

def current_time(request):
    cur_time = time.ctime(time.time())
    f=open("current_time.html","rb")
    data=f.read()

    # 替换当前的时间
    data=str(data,"utf8").replace("!cur_time!",str(cur_time))

    return [data.encode("utf8")]

def routers():
    urlpatterns = (
        ('/cur_time', current_time),
    )
    return  urlpatterns

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])

    urlpatterns = routers()
    path = environ["PATH_INFO"]
    func = None
    for item in urlpatterns:
        if item[0] == path:
            func = item[1]
            break
    if func:
        return func(environ)
    else:
        return ["<h1>404</h1>".encode("utf8")]



httpd = make_server('', 8888, application)

print('Serving HTTP on port 8888...')
httpd.serve_forever()
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/05/22 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档