Metadata-Version: 1.1
Name: Flask-Redistore
Version: 1.0.1
Summary: Adds Redis support to your Flask applications
Home-page: UNKNOWN
Author: Donald Stufft
Author-email: donald.stufft@gmail.com
License: BSD
Description: Flask Redistore
        ===============
        
        .. image:: https://travis-ci.org/dstufft/Flask-Redistore.png
            :target: https://travis-ci.org/dstufft/Flask-Redistore
        
        Adds Redis to your Flask Appliation.
        
        Install
        -------
        
        .. code:: bash
        
            $ pip install Flask-Redistore
        
        Usage
        -----
        
        .. code:: python
        
            import flask
            from flask.ext.redistore import Redistore
        
            app = flask.Flask(__name__)
            app.config["REDIS_URI"] = "redis://:password@localhost/0"
        
            redis = Redistore(app)
            redis.set("My key", "the value!")
            redis.get("My key")
        
        Usage (advanced)
        ----------------
        
        .. code:: python
        
            import flask
            import redis
        
            from flask.ext.redistore import Redistore
        
            redis = Redistore(redis_class=redis.StrictRedis)
        
            def create_app(name=__name__):
                app = flask.Flask(name)
                app.config["REDIS_URI"] = "redis://:password@localhost/0"
        
                redis.init_app(app)
        
                return app
        
            create_app()
        
            redis.set("My new key", "Another Value!")
            redis.get("My new key")
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
