脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python 详解如何写flask文件下载接口

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

2022-02-20 00:12剑客阿良_ALiang Python

Flask是一个使用 Python 编写的轻量级 Web 应用框架。其 WSGI 工具箱采用 Werkzeug ,模板引擎则使用 Jinja2 。Flask使用 BSD 授权。Flask也被称为 "microframework" ,因为它使用简单的核心,用 extension 增加其他功能。Flask没有默认使用的数据库、

简述

写一个简单的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()

准备数据:

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

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

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

下载完成。

 

总结

没啥好总结的。

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

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

到此这篇关于python 详解如何写flask文件下载接口的文章就介绍到这了,更多相关python flask下载内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://huyi-aliang.blog.csdn.net/article/details/120921334

延伸 · 阅读

精彩推荐