Metadata-Version: 2.1
Name: httpcore
Version: 0.0.2
Summary: ...
Home-page: https://github.com/encode/httpcore
Author: Tom Christie
Author-email: tom@tomchristie.com
License: BSD
Description: # HTTPCore
        
        ```python
        import httpcore
        
        response = await httpcore.request('GET', 'http://example.com')
        assert response.status_code == 200
        assert response.body == b'Hello, world'
        ```
        
        Top-level API...
        
        ```python
        response = await httpcore.request(method, url, [headers], [body], [stream])
        ```
        
        Explicit PoolManager...
        
        ```python
        async with httpcore.PoolManager([ssl], [timeout], [limits]) as pool:
            response = await pool.request(method, url, [headers], [body], [stream])
        ```
        
        Streaming...
        
        ```python
        response = await httpcore.request(method, url, stream=True)
        async for part in response.stream():
            ...
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
