GithubHelp home page GithubHelp logo

flask-redis's Introduction

Flask-Redis

https://travis-ci.org/rhyselsmore/flask-redis.png?branch=master https://pypip.in/d/Flask-Redis/badge.png

Add Redis Support to Flask.

Built on top of redis-py.

Contributors

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"

or you are able to declare the following

REDIS_URL="redis://:password@localhost:6379"
REDIS_DATABASE=5

To create the redis instance within your application

from flask import Flask
from flask_redis import Redis

app = Flask(__name__)
redis_store = Redis(app)

or

from flask import Flask
from flask_redis import Redis

redis_store = Redis()

def create_app():
    app = Flask(__name__)
    redis_store.init_app(app)
    return app

Usage

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

  1. 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.
  2. Fork the repository on Github to start making your changes to the master branch (or branch off of it).
  3. Write a test which shows that the bug was fixed or that the feature works as expected.
  4. Send a pull request and bug the maintainer until it gets merged and published.

flask-redis's People

Contributors

grivescorbett avatar lyschoening avatar rhyselsmore avatar underyx avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.