加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Hello.py.txt 501 Bytes
一键复制 编辑 原始数据 按行查看 历史
Harebert Zhu 提交于 2022-05-18 17:14 . first commit
# coding:utf-8
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
@app.route('/upload', methods=['POST', 'GET'])
def upload():
if request.method == 'POST':
f = request.files['file']
basepath = os.path.dirname(__file__)
upload_path = os.path.join(basepath, 'static/uploads',secure_filename(f.filename))
f.save(upload_path)
return redirect(url_for('upload'))
return render_template('upload.html')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化