Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/encode/httpcore
A minimal HTTP client. ⚙️
https://github.com/encode/httpcore
Last synced: 3 days ago
JSON representation
A minimal HTTP client. ⚙️
- Host: GitHub
- URL: https://github.com/encode/httpcore
- Owner: encode
- License: bsd-3-clause
- Created: 2020-01-30T12:41:11.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T10:49:09.000Z (10 days ago)
- Last Synced: 2024-10-29T15:56:39.303Z (10 days ago)
- Language: Python
- Homepage: https://www.encode.io/httpcore/
- Size: 1.72 MB
- Stars: 463
- Watchers: 27
- Forks: 105
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- best-of-web-python - GitHub - 11% open · ⏱️ 06.06.2024): (HTTP Clients)
README
# HTTP Core
[![Test Suite](https://github.com/encode/httpcore/workflows/Test%20Suite/badge.svg)](https://github.com/encode/httpcore/actions)
[![Package version](https://badge.fury.io/py/httpcore.svg)](https://pypi.org/project/httpcore/)> *Do one thing, and do it well.*
The HTTP Core package provides a minimal low-level HTTP client, which does
one thing only. Sending HTTP requests.It does not provide any high level model abstractions over the API,
does not handle redirects, multipart uploads, building authentication headers,
transparent HTTP caching, URL parsing, session cookie handling,
content or charset decoding, handling JSON, environment based configuration
defaults, or any of that Jazz.Some things HTTP Core does do:
* Sending HTTP requests.
* Thread-safe / task-safe connection pooling.
* HTTP(S) proxy & SOCKS proxy support.
* Supports HTTP/1.1 and HTTP/2.
* Provides both sync and async interfaces.
* Async backend support for `asyncio` and `trio`.## Requirements
Python 3.8+
## Installation
For HTTP/1.1 only support, install with:
```shell
$ pip install httpcore
```There are also a number of optional extras available...
```shell
$ pip install httpcore['asyncio,trio,http2,socks']
```## Sending requests
Send an HTTP request:
```python
import httpcoreresponse = httpcore.request("GET", "https://www.example.com/")
print(response)
#
print(response.status)
# 200
print(response.headers)
# [(b'Accept-Ranges', b'bytes'), (b'Age', b'557328'), (b'Cache-Control', b'max-age=604800'), ...]
print(response.content)
# b'\n\n\nExample Domain\n\n\n ...'
```The top-level `httpcore.request()` function is provided for convenience. In practice whenever you're working with `httpcore` you'll want to use the connection pooling functionality that it provides.
```python
import httpcorehttp = httpcore.ConnectionPool()
response = http.request("GET", "https://www.example.com/")
```Once you're ready to get going, [head over to the documentation](https://www.encode.io/httpcore/).
## Motivation
You *probably* don't want to be using HTTP Core directly. It might make sense if
you're writing something like a proxy service in Python, and you just want
something at the lowest possible level, but more typically you'll want to use
a higher level client library, such as `httpx`.The motivation for `httpcore` is:
* To provide a reusable low-level client library, that other packages can then build on top of.
* To provide a *really clear interface split* between the networking code and client logic,
so that each is easier to understand and reason about in isolation.## Dependencies
The `httpcore` package has the following dependencies...
* `h11`
* `certifi`And the following optional extras...
* `anyio` - Required by `pip install httpcore['asyncio']`.
* `trio` - Required by `pip install httpcore['trio']`.
* `h2` - Required by `pip install httpcore['http2']`.
* `socksio` - Required by `pip install httpcore['socks']`.## Versioning
We use [SEMVER for our versioning policy](https://semver.org/).
For changes between package versions please see our [project changelog](CHANGELOG.md).
We recommend pinning your requirements either the most current major version, or a more specific version range:
```python
pip install 'httpcore==1.*'
```