Flask integration for the Fanstatic resource publishing system.
Project description
Flask-Fanstatic
Flask integration for the Fanstatic resource publishing system.
Overview
Fanstatic is a flexible system for managing the static resources (CSS and Javascript) used by your web application. This extension provides simple integration between Fanstatic and Flask.
Adding static resources to your application becomes as simple as installing them with pip:
pip install js.jquery
and need-ing them in your template:
{{ g.fanstatic.needs('js.jquery:jquery') }}
Usage
To start using Flask-Fanstatic, import and initialize the extension for your Flask application:
from flask import Flask from flask_fanstatic import Fanstatic app = Flask(__name__) fanstatic = Fanstatic(app)
Then, in your base template, add the top and bottom resources to include them in your HTML:
<head> {{ g.fanstatic.top }} </head> <body> ...content... {{ g.fanstatic.bottom }} </body>
You can declare resource to include, by using the needs() helper to declare resources needed by your template:
{{ g.fanstatic.needs('js.jquery:jquery') }} {% extends 'layout.html' %} ...
Fanstatic will use the top and bottom helpers above to include the CSS or JavaScript resources need-ed automatically.
You can also need multiple resources:
{{ g.fanstatic.needs( 'js.jquery:jquery', 'js.handlebars:handlebars' ) }}
The needs() method takes any number of strings, in the form <module>:<resource>. You can alternatively import the resources from your code and require them like:
from js.jquery import jquery @app.route('/') def index(): jquery.need() return render_template('index.html')
Application resources
Flask-Fanstatic also makes it easy to add your application’s own static files as Fanstatic resources.
You can use the resource() helper to declare a resource in your application’s 'static' folder:
fanstatic.resource('js/app.js', name='app_js', depends=[jquery])
To include the resource, just use its name to require it in your template:
{{ g.fanstatic.needs('app_js') }}
You can also declare named groups of resources:
from js.jquery import jquery fanstatic.resource('css/app.js', name='app_js') # there are 3 ways to specify a group resource item: fanstatic.group('app_resources', [ # with an imported resource: jquery, # with the name of an internal resource: 'app_js', # with an inline resource: fanstatic.resource('css/app.css'), ])
Groups are included in the same way from the template:
{{ g.fanstatic.needs('app_resources') }}
Blueprint resources
Blueprints can also use Fanstatic in almost the same way as application resources. Start by initializing a Fanstatic() object for your blueprint, and declare its resources:
bluep = Blueprint('bluep', __name__, static_folder='static') fanstatic = Fanstatic(bluep) fanstatic.resource('bluep.css', name='bluep_css')
In the template, reference resources from the current blueprint as .<name>:
{{ g.fanstatic.needs('.bluep_css') }}
Or explicitly provide the name of a blueprint to include a resource from a specific blueprint:
{{ g.fanstatic.needs('bluep.bluep_css') }}
Changes
0.1.0 (2012-11-19)
Initial release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Flask-Fanstatic-0.1.0.tar.gz
.
File metadata
- Download URL: Flask-Fanstatic-0.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ef7375a52e9fa635f03c9e07ac67c6748282480cb44eab22a2eb4eb5b819b2f |
|
MD5 | 6447964ea6c04ec781e39864f830b775 |
|
BLAKE2b-256 | 270eef496afd5fe096c9258e12869e29197396ac46396cc94ee383d6ec7fe377 |