Slycache is now in beta. Check out the docs for full details.

Noteworthy in v0.3.0:

Built in Django support

 INSTALLED_APPS = [
     "slycache.ext.django"
 ]

Built in Flask support

Using the recommended Flask-Caching extension:

from flask_caching import Cache
from slycache.ext.flask import register_cache

app = Flask(__name__)
...
cache = Cache(app)
register_cache(cache)