A minimal low-level HTTP client.
Project description
HTTP Core
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.
- Provides both sync and async interfaces.
- Supports HTTP/1.1 and HTTP/2.
- Async backend support for
asyncio
andtrio
. - Automatic connection pooling.
- HTTP(S) proxy support.
Quickstart
Here's an example of making an HTTP GET request using httpcore
...
async with httpcore.AsyncConnectionPool() as http:
http_version, status_code, reason_phrase, headers, stream = await http.request(
method=b'GET',
url=(b'https', b'example.org', 443, b'/'),
)
try:
body = b''.join(chunk async for chunk in stream)
finally:
await stream.close()
print(status_code, body)
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.
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
Unreleased
0.8.2 (May 3rd, 2020)
Fixed
- Fix connections using proxy forwarding requests not being added to the connection pool properly. (Pull #70)
0.8.1 (April 30th, 2020)
Changed
- Allow inherintance of both
httpcore.AsyncByteStream
,httpcore.SyncByteStream
without type conflicts.
0.8.0 (April 30th, 2020)
Fixed
- Fixed tunnel proxy support.
### Added
- New
TimeoutException
base class.
0.7.0 (March 5th, 2020)
- First integration with HTTPX.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file httpcore-0.8.2.tar.gz
.
File metadata
- Download URL: httpcore-0.8.2.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc80222755f804d082f9f77d3870202b775eecddda77e4ffc035284b232a2cc6 |
|
MD5 | deae7f3b084692defebb4ac29332a87b |
|
BLAKE2b-256 | cce7d19c6172a4d8bedeb0bce5bb240d3faedeec941efe2b68578f18066ebe68 |
File details
Details for the file httpcore-0.8.2-py3-none-any.whl
.
File metadata
- Download URL: httpcore-0.8.2-py3-none-any.whl
- Upload date:
- Size: 39.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56381affdc7261c5fc0d92566b5a93ea0e1e12107de193779eb702dadc35bf02 |
|
MD5 | 46c4adfd88272f69a9dbea28aed8c9d4 |
|
BLAKE2b-256 | f225b867b3ae8621c3df1273043044ee70b1a42436fe9a9b5a6575ec4dda212a |