Skip to main content

Simple python interface for redis

Project description

https://badge.fury.io/py/redistore.svg https://travis-ci.org/lamenezes/redistore.svg?branch=master https://coveralls.io/repos/github/lamenezes/redistore/badge.svg?branch=master https://img.shields.io/badge/python-3.4,3.5,3.6-blue.svg

Simple python interface for redis

Installation

pip install redistore

Usage

>> import redistore
>> store = redistore.get(host='localhost', port=6379, db=0)

Now you can access and store keys and values with a dict-like interface:

>> store['foo'] = 'bar'
>> store['foo']
'bar'
>> 'foo' in store
True
>> del store['foo']
>> store['foo']
...
KeyError: 'foo'

Or using methods:

>> store.set('baz', 'qux')
>> store.get('baz')
'qux'

redistore support other data types, e.g., hashes. they are used exactly like a dict:

>> store['hash'] = {}  # creates a hash without any values
>> 'my' in store['hash']
True
>> store['hash']['my']
'hash'
>> store['hash'].update({'baz': 'qux'})
>> store['hash']['baz']
'qux'
>> len(store['hash'])
2
>> list(store.keys())
['foo', 'bar']
>> for key, value in store.items():
...    print(key, value)
...
my hash
baz qux
>> store['other_hash'] = {'foo': 'bar'}  # creates a hash with values
>> store['other_hash']['foo']
'bar'

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

redistore-0.1.1.tar.gz (3.4 kB view hashes)

Uploaded Source

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