高性能异步web框架Sanic文档【十】

来源:互联网 发布:企业培训网络课程设计 编辑:程序博客网 时间:2024/06/05 11:14
个人翻译自https://github.com/channelcat/sanic,在https://github.com/donghouhe/sanic可看到,现在再贴于CSDN上。MIT LICENSE

静态文件

目录和文件都可以通过静态注册提供

举例

app = Sanic(__name__)# Serves files from the static folder to the URL /staticapp.static('/static', './static')# Serves the file /home/ubuntu/test.png when the URL /the_best.png# is requestedapp.static('/the_best.png', '/home/ubuntu/test.png')app.run(host="0.0.0.0", port=8000)

0 0
原创粉丝点击