HttpX Client for Uplink
Project description
uplink-httpx
Uplink-Httpx is an asynchronous HTTP client based on HTTPX for the awesome Uplink REST library.
Use it like any other HTTP client for uplink.
import asyncio
import uplink
from uplink_httpx import HttpxClient
@uplink.headers({"Accept": "application/json"})
@uplink.returns.json()
class HttpBin(uplink.Consumer):
@uplink.get("get")
def get(self):
pass
async def demo():
httpbin = HttpBin(base_url="https://httpbin.org", client=HttpxClient())
resp = await httpbin.get()
print(resp)
# {'args': {}, 'headers': {'Accept': 'application/json', 'Accept-Encoding': 'gzip, deflate', 'Host': 'httpbin.org', 'User-Agent': 'python-httpx/0.9.5'}, ... 'url': 'https://httpbin.org/get'}
loop = asyncio.get_event_loop()
loop.run_until_complete(demo())
Features
HTTPX builds on the well-established usability of requests, and gives you:
- A requests-compatible API wherever possible. No issues between async and sync clients anymore.
- HTTP/2 and HTTP/1.1 support.
- Strict timeouts everywhere.
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
uplink-httpx-2.1.tar.gz
(4.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uplink-httpx-2.1.tar.gz.
File metadata
- Download URL: uplink-httpx-2.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a63769902080f73b8a0c7baca512e355576e1e002cd4239177879743c1f2af64
|
|
| MD5 |
054a25e06bd6d39f403ff210462283c0
|
|
| BLAKE2b-256 |
a35bf25ef1be02433a9caadda49095b4815e9b26c101c917a6954a1fd2139f84
|
File details
Details for the file uplink_httpx-2.1-py3-none-any.whl.
File metadata
- Download URL: uplink_httpx-2.1-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c0241c1041501868a439b127e1b9dc5c54842324c42680c1a7fe5d3ba7b6404
|
|
| MD5 |
cbf1a87efdf6c4f6260e3cf59aba7070
|
|
| BLAKE2b-256 |
d00f12613d79bb1fbe7a93c1d605d6822d13d26abf065cc5b42631ce30494b1f
|