Metadata-Version: 2.1
Name: direct-redis
Version: 0.1.2
Summary: Serialize any python datatypes and does redis actions using redis-py
Home-page: https://github.com/yonghee12/progress_timer
Author: Yonghee Cheon
Author-email: yonghee.cheon@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
Requires-Dist: redis (==3.4.1)

# Direct-Redis
* Serialize any python datatypes and executes redis commands using redis-py
* When loading, it auutomatically converts serialized data into original data types 

# Install
`pip install direct-redis`

# Supporting Data Types
* Native
    * string
    * number(int, float)
    * dictionary
    * list
    * tuple
    * etc
* Non-native
    * pandas
    * numpy

# Supporting Redis Commands
* SET
* HSET
* HMSET
* GET
* HGET
* HMGET
* HGETALL

# Usage

## Instantiate 
```
from direct_redis import DirectRedis
r = DirectRedis(host='localhost', port=6379)
```

## Example


