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.4.0.tar.gz
(48.1 kB
view details)
Built Distribution
File details
Details for the file Flask-Caching-1.4.0.tar.gz
.
File metadata
- Download URL: Flask-Caching-1.4.0.tar.gz
- Upload date:
- Size: 48.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e34f24631ba240e09fe6241e1bf652863e0cff06a1a94598e23be526bc2e4985 |
|
MD5 | 23594341c7104dc0ab09a57a29e7a4e9 |
|
BLAKE2b-256 | f24e0a8bd13b736c59768e69c39fe7ce48470275cf83edc4b7342509bb9f1a1a |
Provenance
File details
Details for the file Flask_Caching-1.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_Caching-1.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44fe827c6cc519d48fb0945fa05ae3d128af9a98f2a6e71d4702fd512534f227 |
|
MD5 | ac7ea3bb88154bf79ac339149fddb292 |
|
BLAKE2b-256 | 63c05dce9fe8372a7b57b60ec7650e1aeb1a2f861393b0c6e7e2dcb71d2f31ab |