===========================
Features
--------
- Add concurent requests to <span class="title-ref">parfive</span>.
This feature splits the download of a single file into multiple parts if the server the file is being downloaded from supports ranged requests. This should improve the performance of all downloads under these circumstances, and also make parfive useful even if downloading a single file. No changes are needed to use this feature, files will be downloaded using 12 concurrent requests by default. To change the number of concurrent requests you can pass `max_splits` to <span class="title-ref">parfive.Downloader.enqueue\_file</span>. ([\15](https://github.com/Cadair/parfive/pull/15))
- Added CLI interface to Parfive.
([\16](https://github.com/Cadair/parfive/pull/16))
- Parfive now only supports Python 3.6+.
([\22](https://github.com/Cadair/parfive/pull/22))
- Support for specifying headers to be used for all requests to <span
class="title-ref">parfive.Downloader</span> has been added.
([\32](https://github.com/Cadair/parfive/pull/32))
- Support for <span class="title-ref">HTTP\_PROXY</span> and <span
class="title-ref">HTTPS\_PROXY</span> environment variables have been added. ([\32](https://github.com/Cadair/parfive/pull/32))
Bugfixes
--------
- Fix a bug where running parfive in the notebook would error if
ipywidgets was not installed.
([\25](https://github.com/Cadair/parfive/pull/25))
- Remove use of the deprecated `loop=` keyword argument to <span
class="title-ref">aiohttp.ClientSession</span>.
([\30](https://github.com/Cadair/parfive/pull/30))
- Update the notebook detection function due to changes in tqdm
([\36](https://github.com/Cadair/parfive/pull/36))
- Reduce the number of parallel connections to 25 (5 parallel files, 5
parallel downloads per file).
([\37](https://github.com/Cadair/parfive/pull/37))