安装
pip install Flask-Static-Digest
使用示例
# -*- 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)
index.html
<script type="text/javascript" src="{{ url_for('static', filename='js/index.js') }}"></script> <script type="text/javascript" src="{{ static_url_for('static', filename='js/index.js') }}"></script>
配置环境变量 .env
FLASK_APP=hello.app FLASK_ENV=development
命令行执行
$ flask digest compile
启动服务
渲染结果
<!-- url_for --> <script type="text/javascript" src="/static/js/index.js"></script> <!-- static_url_for --> <script type="text/javascript" src="/static/js/index-14362f024c1b0d8a50e669443e935e45.js"></script>
配置参数
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://).