Skip to main content

A very lightweight REST client for Python.

Project description

# light_rest_client [![Build Status](https://travis-ci.org/mediascopegroup/light_rest_client.svg?branch=master)](https://travis-ci.org/mediascopegroup/light_rest_client)
A very lightweight REST client for Python.

## Example
```python
from light_rest_client.client import Client
from light_rest_client.parsers import JSONParser
from light_rest_client.exceptions import HTTPClientException, HTTPServerException

try:
client = Client(url="https://jsonplaceholder.typicode.com", parser=JSONParser())
print(client.get("todos/1"))
except HTTPClientException:
# code
except HTTPServerException:
# code
```

## Installation

```shell
pip install -e git://github.com/mediascopegroup/light_rest_client.git@1.0.2
```

## License
[CDDL](LICENSE)

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

light_rest_client-1.0.3.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page