A thin wrapper for aiohttp client with Requests simplicity
Project description
aiohttp-requests
Behold, the power of aiohttp client with Requests simplicity:
import asyncio
import aiohttp
from aiohttp_requests import requests
async def main():
response = await requests.get('https://api.github.com', auth=aiohttp.BasicAuth('user', 'password'))
text = await response.text()
json = await response.json()
return response, text, json
r, text, json = asyncio.run(main())
>>> r
<ClientResponse(https://api.github.com/) [200 OK]>
>>> r.status
200
>>> r.headers['Content-Type']
'application/json; charset=utf-8'
>>> r.get_encoding()
'utf-8'
>>> text
'{"current_user_url":"https://api.github.com/user",...'
>>> json
{'current_user_url': 'https://api.github.com/user', ... }
Plus built-in concurrency control to do multiple requests safely:
async def main():
# Pass in a list of urls instead of just one. Optionally pass in as_iterator=True to iterate the responses.
responses = await requests.get(['https://api.github.com'] * 2, auth=aiohttp.BasicAuth('user', 'password'))
print(responses) # [<ClientResponse(https://...) [200 OK]>, , <ClientResponse(https://...) [200 OK]>]
# It defaults to 10 concurrent requests maximum. If you can handle more, then set it higher:
requests.max_concurrency = 100
asyncio.run(main())
The requests object is just proxying get and other HTTP verb methods to aiohttp.ClientSession, which returns aiohttp.ClientResponse. To do anything else, read the aiohttp doc.
Links & Contact Info
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
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 aiohttp-requests-0.2.4.tar.gz.
File metadata
- Download URL: aiohttp-requests-0.2.4.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63036b83fabcf359aee33f957f7d8d12532c7d465c1343ab03a53faf38ae9e0c
|
|
| MD5 |
3a24b6d3f93e373077ab3a68792628f8
|
|
| BLAKE2b-256 |
532b34ddd6fb516a8439ec5a860d7640050b49c94b64b7b134cbfbf5a21bbe17
|
File details
Details for the file aiohttp_requests-0.2.4-py3-none-any.whl.
File metadata
- Download URL: aiohttp_requests-0.2.4-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d201d699748f2e1459a49e8b7e53be1d05a487f3827c201a05941139678199b8
|
|
| MD5 |
bbc0e2bc17b9b63f20e767f33def69e7
|
|
| BLAKE2b-256 |
1b8f723efa0175d71272432566bd85739257add08bd1381799141f62596cc2c5
|