https://github.com/coady/clients
High-level HTTP clients for Python.
https://github.com/coady/clients
asyncio httpx requests sessions
Last synced: 4 months ago
JSON representation
High-level HTTP clients for Python.
- Host: GitHub
- URL: https://github.com/coady/clients
- Owner: coady
- License: other
- Created: 2016-03-15T00:24:19.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-01-23T02:45:09.000Z (9 months ago)
- Last Synced: 2025-05-03T20:36:49.751Z (5 months ago)
- Topics: asyncio, httpx, requests, sessions
- Language: Python
- Homepage: https://coady.github.io/clients
- Size: 748 KB
- Stars: 16
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://pypi.org/project/clients/)

[](https://pepy.tech/project/clients)

[](https://github.com/coady/clients/actions/workflows/build.yml)
[](https://codecov.io/gh/coady/clients/)
[](https://github.com/coady/clients/actions/workflows/github-code-scanning/codeql)
[](https://github.com/astral-sh/ruff)
[](https://mypy-lang.org/)Clients originally provided [requests](https://python-requests.org) 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 asyncioSince then [httpx](https://www.encode.io/httpx) 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.```python
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.
```python
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.```python
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.```python
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.
```python
for repo in github.user.repos(visibility='public'):
...
```Asynchronous variants of all client types are provided, e.g., `AsyncClient`. Additional clients for [RPC](https://en.wikipedia.org/wiki/Remote_procedure_call), [GraphQL](https://graphql.org), and proxies also provided.
## Installation
```console
% pip install clients
```## Dependencies
* httpx## Tests
100% branch coverage.
```console
% pytest [--cov]
```