Metadata-Version: 2.1
Name: aiocapsule
Version: 0.0.1
Summary: Simple wrapper for AIOHTTP client session, request and response
Home-page: https://github.com/woncoh1/aiocapsule
Author: woncoh1
Author-email: woncoh1@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# aiocapsule

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

This is a minimal, single-function package containing an AIOHTTP wrapper
designed for high-throughput asynchronous HTTP requests, possibly using
HTTP proxy and basic authentication.

## Install

``` sh
pip install aiocapsule
```

## How to use

A simple call returning a JSON as a dictionary:

``` python
await send_http_request('GET', 'https://api.coingecko.com/api/v3/ping')
```

    {'gecko_says': '(V3) To the Moon!'}


