Metadata-Version: 2.0
Name: aioclient
Version: 0.1.0
Summary: An async web client for humans
Home-page: https://github.com/divbzero/aioclient
Author: William Go
Author-email: will@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
Requires-Dist: aiodns
Requires-Dist: aiohttp
Requires-Dist: cchardet

aioclient
=========

*An async web client for humans*

Installation
------------

.. code:: sh

    pip install aioserver

Usage
-----

.. code:: 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


