Skip to main content

High-level HTTP clients for Python.

Project description

image image image image build image CodeQL image ty

Clients originally provided requests wrappers to encourage best practices, particularly always using Sessions to connect to the same host or api endpoint. The primary goals were:

  • provide a Client object with a convenient constructor
  • support a base url so that requests can provide a relative path
  • provide the same interface for asyncio

Since then httpx(2) has emerged as the successor to requests, and supports the above features natively. So clients.Client can be replaced with httpx.Client for most use cases. The project will continue to be maintained for additional features, such as the Resource object.

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')

Client

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')

Resource

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

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

Resources also implement syntactic support for methods such as getattr and call, providing most of the benefits of custom clients as is.

for repo in github.user.repos(visibility='public'):
    ...

Asynchronous variants of all client types are provided, e.g., AsyncClient. Additional clients for RPC, GraphQL, and proxies also provided.

Installation

pip install clients

Dependencies

  • httpx2

Tests

100% branch coverage.

pytest [--cov]

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-1.6.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clients-1.6-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file clients-1.6.tar.gz.

File metadata

  • Download URL: clients-1.6.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for clients-1.6.tar.gz
Algorithm Hash digest
SHA256 cd0302f5d52fe516dbfc45bd4fecb8c72e8e232cd17b32d5154ccbec5645cd43
MD5 87b174a18ed7051d59cfa7b1af7302c5
BLAKE2b-256 7b55edad1b03b9b0632d7d00ba128ff51a33c5f324e199163d92e37c51db7751

See more details on using hashes here.

Provenance

The following attestation bundles were made for clients-1.6.tar.gz:

Publisher: release.yml on coady/clients

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clients-1.6-py3-none-any.whl.

File metadata

  • Download URL: clients-1.6-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for clients-1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 01ec230cd0970e95d0503c7d01ddb9f14de1694af46ff583c6e942bca9bd95d1
MD5 6602e31820454484340794cf112e7ab8
BLAKE2b-256 9f0105752ebb01a5f831f86f23cab18d021c40cecde5daea6a27e0a165185b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for clients-1.6-py3-none-any.whl:

Publisher: release.yml on coady/clients

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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