Adds caching support to your Flask application
Project description
Flask-Caching
Adds easy cache support to Flask.
Setup
The Cache Extension can either be initialized directly:
from flask import Flask
from flask_caching import Cache
app = Flask(__name__)
# For more configuration options, check out the documentation
cache = Cache(app, config={"CACHE_TYPE": "simple"})
Or through the factory method:
cache = Cache(config={"CACHE_TYPE": "simple"})
app = Flask(__name__)
cache.init_app(app)
Links
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
Flask-Caching-1.7.2.tar.gz
(66.5 kB
view hashes)
Built Distribution
Close
Hashes for Flask_Caching-1.7.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0daabd5249bebfbae3da4c22987bac22047fc8b18ea2716c4fc63d57d218946 |
|
MD5 | b22bcd2c4234a8d1832b944bc570679e |
|
BLAKE2b-256 | bd4ec701bdcd566f26187398cf058ad2ca14c8b2f50b17a17f9076794ae2f8db |