Redis data structures wrapped with Python 3.
Project description
Redis data structures wrapped with Python 3.
Full documentation can be found at http://docr.it/redis_structures
Installation
redis_structures requires a running Redis server. See Redis’s quickstart for installation instructions.
To install redis_structures:
$ sudo pip install redis_structures
or from source:
$ git clone https://github.com/jaredlunde/redis_structures
$ cd redis_structures
$ sudo python setup.py install
Getting Started
>>> from redis_structures import StrictRedis, RedisHash >>> client = StrictRedis(host='localhost', port=6379, db=0) >>> rh = RedisHash("my_hash", prefix="rs:hash" client=client) >>> rh['hello'] = "world" # sets the field name 'hello' to value 'world' in >>> # redis under the key rs:hash:my_hash >>> rh['hello'] 'world' >>> del rh['hello'] >>> rh.get('hello') None
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size redis_structures-0.1.5.tar.gz (38.0 kB) | File type Source | Python version None | Upload date | Hashes View hashes |