Redis Extension for Flask Applications
Project description
Add Redis Support to Flask.
Built on top of redis-py.
Contributors
Rhys Elsmore - @rhyselsmore - https://github.com/rhyselsmore
Bence Nagy - @underyx - https://github.com/underyx
Lars Schöning - @lyschoening - https://github.com/lyschoening
Aaron Tygart - @thekuffs - https://github.com/thekuffs
Christian Sueiras - @csueiras - https://github.com/csueiras
Installation
pip install flask-redis
Or if you must use easy_install:
alias easy_install="pip install $1"
easy_install flask-redis
Configuration
Your configuration should be declared within your Flask config. You can declare via a Redis URL containing the database
REDIS_URL = "redis://:password@localhost:6379/0"
To create the redis instance within your application
from flask import Flask
from flask.ext.redis import FlaskRedis
app = Flask(__name__)
redis_store = FlaskRedis(app)
or
from flask import Flask
from flask.ext.redis import FlaskRedis
redis_store = FlaskRedis()
def create_app():
app = Flask(__name__)
redis_store.init_app(app)
return app
or perhaps you want to use StrictRedis
from flask import Flask
from flask.ext.redis import FlaskRedis
from redis import StrictRedis
app = Flask(__name__)
redis_store = FlaskRedis.from_custom_provider(StrictRedis, app)
or maybe you want to use mockredis to make your unit tests simpler. As of mockredis 2.9.0.10, it does not have the from_url() classmethod that FlaskRedis depends on, so we wrap it and add our own.
from flask import Flask
from flask.ext.redis import FlaskRedis
from mockredis import MockRedis
class MockRedisWrapper(MockRedis):
'''A wrapper to add the `from_url` classmethod'''
@classmethod
def from_url(cls, *args, **kwargs):
return cls()
def create_app():
app = Flask(__name__)
if app.testing:
redis_store = FlaskRedis.from_custom_provider(MockRedisWrapper)
else:
redis_store = FlaskRedis()
redis_store.init_app(app)
return app
Usage
FlaskRedis proxies attribute access to an underlying Redis connection. So treat it as if it were a regular Redis instance.
from core import redis_store
@app.route('/')
def index():
return redis_store.get('potato', 'Not Set')
Protip: The redis-py package currently holds the ‘redis’ namespace, so if you are looking to make use of it, your Redis object shouldn’t be named ‘redis’.
For detailed instructions regarding the usage of the client, check the redis-py documentation.
Advanced features, such as Lua scripting, pipelines and callbacks are detailed within the projects README.
Contribute
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
Fork the repository on Github to start making your changes to the master branch (or branch off of it).
Write a test which shows that the bug was fixed or that the feature works as expected.
Send a pull request and bug the maintainer until it gets merged and published.
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 Distributions
File details
Details for the file Flask-Redis-0.1.0.zip
.
File metadata
- Download URL: Flask-Redis-0.1.0.zip
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3db36ba04a50d7bd0180389e6f5fd02b34cc1c7ff2ecfd03ead421bdcdf9b815 |
|
MD5 | 1484f2f7f78ab858f29312129d164630 |
|
BLAKE2b-256 | 4e7700cd607718d01f2f5eb6545512c7e3b50c6b17b547729dc1c14faa187ed5 |
File details
Details for the file Flask_Redis-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_Redis-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d930f96cc0fd1f6e839821485752eb641a850eb51005307222709b57fd35405e |
|
MD5 | 4afbd64fa7cf19945ebd616139eb6163 |
|
BLAKE2b-256 | 140ca8f82cb7542fa0109c86387254e8bbd12006648a8f0f2a633873ee4b9e2d |
File details
Details for the file Flask_Redis-0.1.0-py2-none-any.whl
.
File metadata
- Download URL: Flask_Redis-0.1.0-py2-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db05c0d7912d529ac416f082ac3257eedab12d38ccb4a5c2210b346174a4358b |
|
MD5 | 9bb061a5bd146d424d5b0e2c94f7bd54 |
|
BLAKE2b-256 | 591cf79b76ff67ae5bbd4e29b834dd6745c9524585253dd8e26308950896011f |