当前位置: 首页 > 工具软件 > Bottle.py > 使用案例 >

bottle实现文件下载

张子墨
2023-12-01
# -*-coding:utf-8-*-
# -*- coding: utf-8 -*-
from bottle import *
import json


@get('/download')
def get():
    return static_file('app.py', root=r'D:\myFlask', download=True)


run(host='0.0.0.0', port=8080)

 类似资料: