Skip to main content

Pythonic wrapper for Redis Client.

Project description

# Redis Wrapper > A Pythonic Wrapper of Redis Client

[![PyPI](https://img.shields.io/pypi/pyversions/rediswrapper.svg)](https://pypi.python.org/pypi/rediswrapper) [![Build Status](https://travis-ci.org/frostming/RedisDict.svg?branch=master)](https://travis-ci.org/frostming/RedisDict) [![Coverage Status](https://coveralls.io/repos/github/frostming/rediswrapper/badge.svg?branch=master)](https://coveralls.io/github/frostming/rediswrapper?branch=master)

rediswrapper is a pythonic wrapper of Redis Client for end users. The whole storage

acts like a python dict as well as its child storage values.

## Installation From PyPI: `bash pip install rediswrapper ` From GitHub `bash git clone https://github.com/frostming/rediswrapper cd rediswrapper python setup.py install `

## Usage `python >>> import rediswrapper >>> redis = rediswrapper.RedisDict() # String value >>> redis['a'] = 'hello' # int value >>> redis['b'] = 2 >>> dict(redis) {'a': 'hello', 'b': 2} # Picklable object >>> import datetime >>> redis['c'] = datetime.datetime.now() # List value >>> redis['d'] = range(5) >>> redis['d'].append(0) >>> redis['d'] ListType value([0, 1, 2, 3, 4, 0]) # Hash value >>> redis['e'] = {'a': 1, 'b': 2} >>> redis['e'].get('a') 1 # Set value >>> redis['f'] = set([1, 2]) >>> redis['f'].add(3) >>> redis['f'] SetType value([1, 2, 3]) ` RedisDict will try to serialize non-sting values and store them in redis and unserialize them when fetching back.

All redis value types are mocked with respective python objects and support all standard methods as the builtin types.

To inspect those value types, one should use the ABCs defined in collections module. `python >>> from collections import Mapping >>> isinstance(redis['e'], Mapping) True `

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

rediswrapper-0.2.0.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file rediswrapper-0.2.0.tar.gz.

File metadata

File hashes

Hashes for rediswrapper-0.2.0.tar.gz
Algorithm Hash digest
SHA256 8d4b13956252e2a3edd28467a9cc58d08b4fa03b0d1c4501a28e377d9e44278e
MD5 3c8ca976594748b188343c244648d452
BLAKE2b-256 2ce1d9f9e8b4d9ba316b9394c949e15a577b09233601097912a416076bab21e5

See more details on using hashes here.

Supported by

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