Skip to main content

HTTP for lazy, impatient, hubristic humans.

Project description

https://img.shields.io/pypi/v/clients.svg https://img.shields.io/pypi/pyversions/clients.svg https://img.shields.io/pypi/status/clients.svg https://img.shields.io/travis/coady/clients.svg https://img.shields.io/codecov/c/github/coady/clients.svg

Clients provide requests wrappers which encourage best practices, particularly always using Sessions to connect to the same host or api endpoint.

Usage

Typical requests usage is redundant and inefficient, by not taking advantage of connection pooling.

r = requests.get('https://api.github.com/user', headers={'authorization': token})
r = requests.get('https://api.github.com/user/repos', headers={'authorization': token})

Using sessions is the better approach, but more verbose and in practice requires manual url joining.

s = requests.Session()
s.headers['authorization'] = token
r = s.get('https://api.github.com/user')
r = s.get('https://api.github.com/user/repos')

Clients make using sessions easier, with implicit url joining.

client = clients.Client('https://api.github.com/', headers={'authorization': token})
r = client.get('user')
r = client.get('user/repos')

Resources extend Clients to implicitly handle response content, with proper checking of status_code and content-type.

resource = clients.Resource('https://api.github.com/', headers={'authorization': token})
for repo in resource.get('user/repos'):
   ...

Being session based, Clients also work seamlessly with other requests adapters, such as CacheControl.

Asynchronous Clients are also provided, using aiohttp instead of requests.

See documentation for more examples.

Installation

$ pip install clients

Dependencies

  • Python 2.7, 3.4+

  • requests 2.4.2+

  • aiohttp (optional)

Tests

100% branch coverage.

$ pytest [--cov]

Changes

0.4

  • Asynchronous clients and resources

0.3

  • singleton decorator

0.2

  • Resource attribute upcasts back to a client

  • iter and download implement GET requests with streamed content

  • create implements POST request and returns Location header

  • update implements PATCH request with json params

  • __call__ implements GET request with params

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

clients-0.4.tar.gz (15.0 kB view hashes)

Uploaded Source

Built Distribution

clients-0.4-py2.py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 2 Python 3

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