1 Star 0 Fork 4

Hayden/Flask_BestPractices

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_run.py 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangyuexiong 提交于 2019-05-16 14:45 . first class
# -*- coding: utf-8 -*-
# @Time : 2019-05-15 15:40
# @Author : ShaHeTop-Almighty-ares
# @Email : yang6333yyx@126.com
# @File : test_run.py
# @Software: PyCharm
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=9999)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ghl1024/Flask_BestPractices.git
git@gitee.com:ghl1024/Flask_BestPractices.git
ghl1024
Flask_BestPractices
Flask_BestPractices
master

搜索帮助