Metadata-Version: 2.1
Name: redpie
Version: 0.0.1
Summary: This modules allows you to use redis just like a Python dictionary
Home-page: https://github.com/victor141516/Redpie
License: UNKNOWN
Author: victor141516
Author-email: yomellamovictor@gmail.com
Maintainer: victor141516
Maintainer-email: yomellamovictor@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: redis

# Redpie

Use redis just like a Python dictionary

## How to use

### Installation

    $ pip install redpie

### Usage

    from redpie import Redpie

    r = Redpie(db=0, host='localhost', port=6379)  # Or just r = Redpie(); 0, localhost and 6379 are defaults


    from requests import Session

    r.update({
        'you can': 'assign basic types',
        'and even more complex things': Session
    })

    >>> print(r['and even more complex things']())
    <requests.sessions.Session object at 0x10c68d5c0>


