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.1.5.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiohttp_requests-0.1.5-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: aiohttp-requests-0.1.5.tar.gz
  • Upload date:
  • Size: 6.5 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.1.5.tar.gz
Algorithm Hash digest
SHA256 2d8374c45a427ebb1f586bdd10953f01ed66c33fe48b5336876854fc592fc6e7
MD5 bd1ef1b94c1c1c340486df23b99210aa
BLAKE2b-256 74f2b4691cc7cd1271b1dcc98cad18fd57a48de237197f1edd381fa203b1ac5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp_requests-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8fd5f51da7c86f339f208ec54478bd4249092dc3081359361652a51f2c88ce96
MD5 51226c5e44a2ee967fef0fe7be1720cf
BLAKE2b-256 73489990bdf24f087ee3d6925fb36ea555f0eaa6fc6db9209eed92b8c098e94a

See more details on using hashes here.

Supported by

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