有没有办法使用 flask-python 通过 api 从服务器发送 zip 文件?

Is there a way to send a zip file from server via api using flask-python?

我需要开发一个 api,其中 zip 文件存储在服务器中,并在客户端请求时同步。有办法吗?

为return一个文件瓶提供了send_file()功能。

return send_file('<FILE_PATH>', as_attachment=True, attachment_filename='<FILE_ATTACHMENT_NAME>')

此处 link 文档