Metadata-Version: 2.1
Name: aiocapsule
Version: 0.0.2
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! -->

- A minimal package containing an AIOHTTP wrapper function
- Designed for asynchronous HTTP requests to *a large, unknown number of
  different servers*
- Support for HTTP proxy and basic authentication

## Install

``` sh
pip install aiocapsule
```

## How to use

``` python
from aiocapsule.core import request
```

A simple call returning JSON as a dict:

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

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

Or a string of HTML:

``` python
await request('GET', 'https://example.com/', text=True)
```

    '<!doctype html>\n<html>\n<head>\n    <title>Example Domain</title>\n\n    <meta charset="utf-8" />\n    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />\n    <meta name="viewport" content="width=device-width, initial-scale=1" />\n    <style type="text/css">\n    body {\n        background-color: #f0f0f2;\n        margin: 0;\n        padding: 0;\n        font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;\n        \n    }\n    div {\n        width: 600px;\n        margin: 5em auto;\n        padding: 2em;\n        background-color: #fdfdff;\n        border-radius: 0.5em;\n        box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);\n    }\n    a:link, a:visited {\n        color: #38488f;\n        text-decoration: none;\n    }\n    @media (max-width: 700px) {\n        div {\n            margin: 0 auto;\n            width: auto;\n        }\n    }\n    </style>    \n</head>\n\n<body>\n<div>\n    <h1>Example Domain</h1>\n    <p>This domain is for use in illustrative examples in documents. You may use this\n    domain in literature without prior coordination or asking for permission.</p>\n    <p><a href="https://www.iana.org/domains/example">More information...</a></p>\n</div>\n</body>\n</html>\n'


