Skip to main content

HTTP client

Project description

https://travis-ci.org/cdumay/cdumay-rest-client.svg?branch=master

cdumay-rest-client

This library is a basic REST client with exception formatting.

Quickstart

First, install cdumay-rest-client using pip:

$ pip install flask-zookeeper

Next, add a RESTClient instance to your code:

import json, sys
from cdumay_rest_client.client import RESTClient

client = RESTClient(server="http://jsonplaceholder.typicode.com")
json.dump(
    client.do_request(method="GET", path="/posts/1"),
    sys.stdout,
    sort_keys=True,
    indent=4,
    separators=(',', ': ')
)

Result:

{
    "body": "quia et suscipit\nsuscipit recusandae [...]",
    "id": 1,
    "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
    "userId": 1
}

Exception

You can use marshmallow to serialize exceptions:

import json, sys
from cdumay_rest_client.client import RESTClient
from cdumay_rest_client.exceptions import HTTPException, HTTPExceptionValidator

try:
    client = RESTClient(server="http://jsonplaceholder.typicode.com")
    data = client.do_request(method="GET", path="/me")
except HTTPException as exc:
    data = HTTPExceptionValidator().dump(exc).data

json.dump(data, sys.stdout, sort_keys=True, indent=4, separators=(',', ': '))

Result:

{
    "code": 404,
    "extra": {},
    "message": "Not Found"
}

License

Apache License 2.0

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

cdumay-rest-client-0.0.12.tar.gz (4.5 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