1 Star 0 Fork 0

toliong/flasktest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
example.py 294 Bytes
一键复制 编辑 原始数据 按行查看 历史
toliong 提交于 2018-02-01 23:41 . Add a simple flask
#!/usr/bin/python3
# --*-- coding:utf8 --*--
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "<h1>Hello World</h1>"
@app.route('/user/<name>')
def user(name):
return '<h1>Hello, %s </h1>' % name
if __name__ == '__main__':
app.run(debug=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/toliong/flasktest.git
git@gitee.com:toliong/flasktest.git
toliong
flasktest
flasktest
master

搜索帮助