slumbercache

A library that makes consuming a REST API easier and more convenient with Cache


License
Other
Install
pip install slumbercache==0.1.1

Documentation

slumbercache

Slumber is a Python library that provides a convenient yet powerful object-oriented interface to ReSTful APIs. It acts as a wrapper around the excellent requests and abstracts away the handling of URLs, serialization, and request processing.

Install

pip install slumbercache

Usage

Example Usage with Cache enabled

import slumbercache

api = slumbercache.API("http://slumbercache.in/api/v1/", auth=("demo", "demo"), cache=True)
## GET http://slumbercache.in/api/v1/note/
api.note.get()

Credit

slumbercache is a fork of slumber with Cache added for better performance