Metadata-Version: 2.4
Name: aioclient
Version: 0.2.2
Summary: An async web client for humans
Home-page: https://github.com/divbzero/aioclient
Author: Chris Lei
Author-email: chris@divbzero.com
License: MIT
Keywords: asyncio aiohttp async web client humans simple HTTP HTTPS forhumans
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
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: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: aiodns
Requires-Dist: aiohttp
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

aioclient
===

Installation
---

```sh
python3 -m pip install aioclient
```

Usage
---

```python
import aioclient
import asyncio

async def get_example():
    status, headers, body = await aioclient.get('https://www.example.com/')
    print(body)

asyncio.run(get_example())
```

Changelog
---

### v0.1.0

* GET requests return `status, headers, body` tuples


### v0.2.0

* Support `OPTIONS`, `HEAD`, `POST`, `PUT`, `PATCH`, and `DELETE` requests
* Deserialize `text/xml` responses as XML `ElementTree`

### v0.2.1

* Fix project description

### v0.2.2

* Remove `cchardet` dependency
