Skip to main content

Redis integration for Bottle.

Project description

=====================
Bottle-Redis
=====================

.. image:: https://travis-ci.org/bottlepy/bottle-redis.svg?branch=master
:target: https://travis-ci.org/bottlepy/bottle-redis

Redis is an open source, advanced key-value store. It is often referred
to as a data structure server since keys can contain strings, hashes,
lists, sets and sorted sets.

This plugin simplifies the use of redis databases in your Bottle applications.
Once installed, all you have to do is to add a ``rdb`` keyword argument
(configurable) to route callbacks that need a database connection.

Installation
===============

Install with one of the following commands::

$ pip install bottle-redis
$ easy_install bottle-redis

or download the latest version from github::

$ git clone git://github.com/bottlepy/bottle-extras.git
$ cd bottle-extras/redis
$ python setup.py install

Usage
===============

Once installed to an application, the plugin passes an open
:class:`redis.Redis` instance to all routes that require a ``rdb`` keyword
argument::

import bottle

app = bottle.Bottle()
plugin = bottle.ext.redis.RedisPlugin(host='localhost')
app.install(plugin)

@app.route('/show/:item')
def show(item, rdb):
row = rdb.get(item)
if row:
return template('showitem', item=item)
return HTTPError(404, "Page not found")

Routes that do not expect a ``rdb`` keyword argument are not affected.

Configuration
=============

The following configuration options exist for the plugin class:

* **host**: Host on which the Redis server is located (default: localhost ).
* **port**: Port on which the Redis server is listening (default: 6379)
* **database** : Select the database to use (default: 0)
* **keyword**: The keyword argument name that triggers the plugin (default: 'rdb').

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bottle-redis-0.2.3.tar.gz (2.6 kB view details)

Uploaded Source

File details

Details for the file bottle-redis-0.2.3.tar.gz.

File metadata

File hashes

Hashes for bottle-redis-0.2.3.tar.gz
Algorithm Hash digest
SHA256 2843af0f98107469857f9681e4dd330ce589de4da8b606e7a69db503d3821cce
MD5 93519f9c13bf0c4cdd52a699e88ae0c5
BLAKE2b-256 fd9fcbae6c4aa9b433d913f7188119e2d65cb9776a0970f789308b4f9c4b3ee3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page