欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python 详解如何写flask文件下载接口

时间:2022-04-22 09:55:45|栏目:Python代码|点击:

简述

写一个简单的flask文件下载接口。

依赖

flask、gevent

代码

不废话上代码。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Oct 23 19:53:18 2021
@author: huyi
"""
 
from flask import Flask, request, make_response, send_from_directory
from gevent.pywsgi import WSGIServer
from gevent import monkey
 
# 将python标准的io方法,都替换成gevent中的同名方法,遇到io阻塞gevent自动进行协程切换
monkey.patch_all()
app = Flask(__name__)
 
@app.route("/download", methods=['GET'])
def download_file():
    get_data = request.args.to_dict()
    file_path = get_data.get('fileName')
 
    response = make_response(
        send_from_directory('/Users/huyi/Movies/Videos',file_path,as_attachment=True))
    response.headers["Content-Disposition"] = "attachment; filename={}".format(
        file_path.encode().decode('latin-1'))
    return response
 
if __name__ == '__main__':
    WSGIServer(('0.0.0.0', 8080), app).serve_forever()

准备数据:

浏览器输入:http://localhost:8080/download?fileName=test.mp4

下载完成。

总结

没啥好总结的。

如果本文对你有帮助,请点个赞支持一下吧。

上一篇:Python的函数使用详解

栏    目:Python代码

下一篇:python如何实现单向链表及单向链表的反转

本文标题:python 详解如何写flask文件下载接口

本文地址:http://www.codeinn.net/misctech/199829.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有