Skip to main content

HTTP client

Project description

Latest Version Latest version Documentation Status https://img.shields.io/badge/license-BSD3-blue.svg

cdumay-http-client

This library is a basic HTTP client for NON-REST api with exception formatting.

Quickstart

First, install cdumay-rest-client using pip:

$ pip install cdumay-http-client

Next, add a HttpClient instance to your code:

from cdumay_http_client.client import HttpClient

client = HttpClient(server="http://warp.myhost.com/api/v0")
print(client.do_request(method="POST", path="/exec", data=[...]))

Exception

You can use marshmallow to serialize exceptions:

import json, sys
from cdumay_http_client.client import HttpClient
from cdumay_http_client.exceptions import HTTPException, HTTPExceptionValidator

try:
    client = HttpClient(server="http://warp.myhost.com/api/v0")
    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

Licensed under BSD 3-Clause License or https://opensource.org/licenses/BSD-3-Clause.

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-http-client-0.0.15.tar.gz (7.6 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