A solution to have lists and dictionaries serialized using redis-py.
Project description
# SerializedRedis
A solution to have lists and dictionaries serialized using redis-py.
## Installation
To install serialized_redis, simply:
```shell
pip install serialized-redis
```
## Example
```python
from serialized_redis import SerializedRedis
redis = SerializedRedis()
redis.set('datas', { 'name': 'Evandro', 'age:': 27 })
type(redis.get('datas')) # It will return a dictionary
```
A solution to have lists and dictionaries serialized using redis-py.
## Installation
To install serialized_redis, simply:
```shell
pip install serialized-redis
```
## Example
```python
from serialized_redis import SerializedRedis
redis = SerializedRedis()
redis.set('datas', { 'name': 'Evandro', 'age:': 27 })
type(redis.get('datas')) # It will return a dictionary
```
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
serialized-redis-0.1.3.tar.gz
(1.4 kB
view hashes)