python如何删除excel中不满足要求的工作簿(excel怎么删除工作表里不需要的)
577
2022-05-30
Flask-static-Digest 用于处理静态文件
文档:https://github.com/nickjj/flask-static-digest
安装
pip install Flask-Static-Digest
1
使用示例
# -*- coding: utf-8 -*- from flask import Flask, render_template from flask_static_digest import FlaskStaticDigest app = Flask(__name__) # 注册 FlaskStaticDigest(app) # 路由 @app.route('/') def hello_world(): return render_template('index.html') if __name__ == '__main__': app.run(debug=True)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
index.html
1
2
3
4
配置环境变量 .env
FLASK_APP=hello.app FLASK_ENV=development
1
2
命令行执行
$ flask digest compile
1
启动服务
http://127.0.0.1:5500/
渲染结果
1
2
3
4
5
配置参数
FLASK_STATIC_DIGEST_BLACKLIST_FILTER = [] # If you want specific extensions to not get md5 tagged you can add them to # the list, such as: [".htm", ".html", ".txt"]. Make sure to include the ".". FLASK_STATIC_DIGEST_GZIP_FILES = True # When set to False then gzipped files will not be created but static files # will still get md5 tagged. FLASK_STATIC_DIGEST_HOST_URL = None # When set to a value such as https://cdn.example.com and you use static_url_for # it will prefix your static path with this URL. This would be useful if you # host your files from a CDN. Make sure to include the protocol (aka. https://).
1
2
3
4
5
6
7
8
9
10
11
12
Flask Python
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。