Skip to main content

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.get_event_loop().run_until_complete(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', ... }

The requests object is just proxying get and any other HTTP verb methods to aiohttp.ClientSession, which returns aiohttp.ClientResponse. To do anything else, just read the aiohttp doc.

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

aiohttp-requests-0.2.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

aiohttp_requests-0.2.0-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file aiohttp-requests-0.2.0.tar.gz.

File metadata

  • Download URL: aiohttp-requests-0.2.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for aiohttp-requests-0.2.0.tar.gz
Algorithm Hash digest
SHA256 535b8eb39a120d2c644d574ff091295e00d89b08d80d1828b56782dcb202ad99
MD5 04e0e04b2dd91dbcfa1de80603a58874
BLAKE2b-256 96c7669df50daebdc42108c15089e5fa15ef69a6c692986da501d72f0f2bc9d2

See more details on using hashes here.

File details

Details for the file aiohttp_requests-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aiohttp_requests-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a5ce7e40f9956b047f3e0975adc0d836721cf1b9e33785ac240367ce7853f8c9
MD5 6664c32f7f576afc69cd1daad5010a28
BLAKE2b-256 9ecff710d7f63f564e30eaf70c5ecbafc49f9af1efbbf088128c3c6ea5299220

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page