* .netrc Support *TODO*
* Chunked Requests
+## Installation
+
+Install with pip:
+
+```shell
+$ pip install http3
+```
+
+HTTP3 requires Python 3.6+
+
## Documentation
For a run-through of all the basics, head over to the [QuickStart](quickstart.md).
A huge amount of credit is due to `requests` for the API layout that
much of this work follows, as well as to `urllib3` for plenty of design
inspiration around the lower level networking details.
+
+<p align="center">— ⭐️ —</p>
+<p align="center"><i>HTTP3 is <a href="https://github.com/encode/http3/blob/master/LICENSE.md">BSD licensed</a> code. Designed & built in Brighton, England.</i></p>
-# HTTP3
+<h1 style="margin: 0">HTTP3</h1>
<a href="https://travis-ci.org/encode/http3">
<img src="https://travis-ci.org/encode/http3.svg?branch=master" alt="Build Status">
A huge amount of credit is due to `requests` for the API layout that
much of this work follows, as well as to `urllib3` for plenty of design
inspiration around the lower level networking details.
+
+## Installation
+
+Install with pip:
+
+```shell
+$ pip install http3
+```
+
+HTTP3 requires Python 3.6+
# Parallel Requests
+!!! warning
+ This page documents some proposed functionality that is not yet released.
+ See [pull request #52](https://github.com/encode/http3/pull/52) for the
+ first-pass of an implementation.
+
HTTP3 allows you to make HTTP requests in parallel in a highly efficient way,
using async under the hood, while still presenting a standard threaded interface.