Simple wrapper for aiohttp. Designed for my own use but might be useful to others.
Project description
aiohttphelper
Context
The purpose of this package is to make a simple wrapper for aiohttp/calls in order to use it in my personnal / professional projects.
It will make one or several calls using the same session and coroutines.
Requirements
Installation / Dependencies
pip install aiohttphelper
The following dependencies will also be installed
aiohttp[speedups]==3.6.2
Usage
First import the module:
import aiohttphelper
You have 4 functions available to you:
aiohttphelper.get(calls, headers, **kwargs)
aiohttphelper.put(calls, headers, **kwargs)
daiohttphelper.post(calls, headers, **kwargs)
aiohttphelper.delete(calls, headers, **kwargs)
Calls is a list of the urls to request. In case of put/post you need to provide a tuple (url, data):
aiohttphelper.put((url, data), headers, **kwargs)
They all return the same thing, a list of SimpleNamespace objects with the following attributes:
object.url
object.status
object.text
As it's build in top of aiohttp **kwargs is used to pass parameters to the request. Look at the documentation for more details.
:warning: !Be carefull the default timeout for the session is 5 minutes, but you can override it:
aiohttphelper.get('dummy_url', headers='dummy_headers', timeout="10000")
Error Handling
By default all the calls that does not succed will raise an error:
aiohttp.client_exceptions.ClientResponseError
If you want to carry on with the calls even if one fails you need to pass raise_for_status=False
as an argument.
If you do so the result will contain the response text and response status in any successfull request.
References
aiohttp Licence Copyright 2013-2020 aiohttp maintainers
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 aiohttphelper-2.3.0.tar.gz
.
File metadata
- Download URL: aiohttphelper-2.3.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63847b59ca727378d356cf4644c4d4f7ff2164a1a24016793b199fa0eb3b637a |
|
MD5 | 1247995f293898e483166777102caf6a |
|
BLAKE2b-256 | e752ebc2b23a662c05dd126e2289753eb2bc5020d171aba4d92e7f51008a3da6 |
File details
Details for the file aiohttphelper-2.3.0-py3-none-any.whl
.
File metadata
- Download URL: aiohttphelper-2.3.0-py3-none-any.whl
- Upload date:
- Size: 4.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87c72e8ba944ca6a96e288d13b77a1e3f3c5cf71c91aee7344d5a7e6d5c68b0f |
|
MD5 | d1d4f056c5862b2cf4e595c88e365640 |
|
BLAKE2b-256 | 6654f2fe71ba225ed026b62d75d71837fe2af17fa014ca5e22f59a9c100bba9b |