Flask-Collect -- Collect static files in Flask application
Project description
Flask-Collect is an extension for Flask that helps collecting static files.
Serving static files with Flask – bad idea for production, this tool will help you collect them in one command. It checks application and blueprints for static files and copy them to specific folder (saves related paths).
Docs are available at http://flask-collect.readthedocs.org/. Pull requests with documentation enhancements and/or fixes are awesome and most welcome.
Requirements
python (2.6, 2.7, 3.3)
Flask >= 0.10.1
Installation
Flask-Collect should be installed using pip:
pip install Flask-Collect
Setup
Flask-Collect settings (default values):
# Target static dir COLLECT_STATIC_ROOT = <APP.ROOT_PATH>/static COLLECT_STORAGE = 'flask_collect.storage.file'
Initialize Flask-Collect extenstion:
from flask_collect import Collect ... collect = Collect() collect.init_app(app)
If you use Flask-Script, activate Flask-Collect commands:
from flask_collect import Collect ... manager = Manager() ... collect = Collect() collect.init_app(app) collect.init_script(manager)
Use Flask-Collect
From any python script:
collect.collect(remove=True, verbose=True)
with Flask-Script:
$ ./manage.py collect –remove
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/Flask-Collect/issues
Contributors
Maintainer: Kirill Klenov (horneds@gmail.com)
Also see the CONTRIBUTORS.rst file.
Contributing
Development of flask-collect happens at github: https://github.com/klen/Flask-Collect
License
Licensed under a BSD license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Flask-Collect-1.2.2.tar.gz
.
File metadata
- Download URL: Flask-Collect-1.2.2.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26c8a76451ba1d31236367afd90f4c5a99ba88392adad675ee4fb93a45a36927 |
|
MD5 | 82254ca59df7de9112b772058e08adb7 |
|
BLAKE2b-256 | 991bd05272e6a16bc68cc5af50e6fad361cc12e725c454bd3e6d5177a8c4269b |
File details
Details for the file Flask_Collect-1.2.2-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_Collect-1.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3274f651b532e93549d37c21c5630fa98e4b9eccf49573f8d920b1225716a12b |
|
MD5 | 52119b95b414fb4a0977c7efff611905 |
|
BLAKE2b-256 | 123d5b13a8a9903c20e916f379f5015dd048315bc806ffd5ee7d4c453aa4817b |