Metadata-Version: 2.1
Name: drowse
Version: 0.2.0
Summary: Human readable slim REST client
Home-page: https://github.com/lgaggini/drowse
Author: Lorenzo Gaggini
Author-email: lg@lgaggini.net
License: LICENSE
Keywords: REST,API,HTTP
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: requests

# drowse

drowse is a human readable Python slim REST client inspired by [Siesta](https://github.com/scastillo/siesta) and powered by [requests](https://github.com/kennethreitz/requests).

## Quickstart
```python
from drowse import API
api = API('https://api.github.com/')
repos = api.users.lgaggini.repos.get()
```
## Features
* slim
* human-readable
* powered by rock-solid requests
* json only
* errors and exceptions leaved to upper layers

## Install
```
git clone https://github.com/lgaggini/drowse.git
cd drowse
python2 setup.py install
```

pip package to come.

## Status
Beta version 0.2.0, manual tested on a medium tests set.

## Documentation
See the [readme](https://github.com/lgaggini/drowse/tree/master/docs/README.md) in the docs folder.


