Metadata-Version: 2.1
Name: aioclient
Version: 0.2.1
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
Platform: UNKNOWN
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: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: aiodns
Requires-Dist: aiohttp
Requires-Dist: cchardet

aioclient
===

Installation
---

```sh
pip install aioclient
```

Usage
---

```python
import aioclient

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

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


