Simple api collector
Project description
pyllector
Modifided aiohttp.ClientSession. More Safety.
Instalation
pip install pyllector
Example
from pyllector import ApiCollector
from models import HttpMethod, ContentType
import asyncio
async def main():
api = ApiCollector('https://some-api.com/v2/', main_params={'some_api_key': 'some...'})
data = await api.push('some_api_method',
content_type=ContentType.JSON,
http_method=HttpMethod.POST,
params={'some_method_param': 'some_value'},
)
print(data['some keys'])
asyncio.run(main())
ApiCollector check allmost http errors,
and repeat request limit
times until he gets response,
or will return None else limit
is 0.
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
pyllector-0.0.3.2.tar.gz
(2.6 kB
view hashes)
Built Distribution
Close
Hashes for pyllector-0.0.3.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 981b84d2da5975bf5257be0e2968efe78991128e0d1f0b863c9ed5123bf675d3 |
|
MD5 | 87bce3b4993479bc3c10ab8092e4f6d6 |
|
BLAKE2b-256 | bfa7b52af8bef09ec2bc2cebfe3bc0d1928d1f15bc86736f4c74deae5b3e8a80 |