1 Star 0 Fork 0

断风格男丶/羽毛球vip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start_webhook.py 355 Bytes
一键复制 编辑 原始数据 按行查看 历史
断风格男丶 提交于 2018-12-24 10:48 . first
# coding=utf-8
from wsgiref.simple_server import make_server
# 导入我们自己编写的application函数:
from webhook import application
# 创建一个服务器,IP地址为空,端口是8000,处理函数是application
httpd = make_server('', 8000, application)
print('Serving HTTP on port 8000...')
# 开始监听HTTP请求:
httpd.serve_forever()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/cctvkill/badminton_vip.git
[email protected]:cctvkill/badminton_vip.git
cctvkill
badminton_vip
羽毛球vip
master

搜索帮助