二进制文件下载

时间:2012-12-05 14:27:12

标签: python web-services bottle

我正在使用python和bottle构建服务器。

如何处理二进制文件的请求?

我读过我应该用烧瓶。有没有办法在不使用烧瓶的情况下做到这一点?

1 个答案:

答案 0 :(得分:8)

是的,您应该使用static_file功能:

from bottle import static_file    

@route('/download/<filename:path>')
def download(filename):
    return static_file(filename, root='/path/to/static/files', download=filename)