Metadata-Version: 2.1
Name: pydownloadfile
Version: 0.5
Summary: Python3 module to download files using requests.
Home-page: https://github.com/carlosplanchon/pydownloadfile
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/pydownloadfile/archive/v0.5.tar.gz
Keywords: download,file,requests
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# pydownloadfile
*Python3 module to download files using requests.*

## Installation
### Install with pip
```
pip3 install -U pydownloadfile
```

## Usage
```
In [1]: from pathlib import Path

In [2]: import pydownloadfile

In [3]: pydownloadfile.download_file(
    url="https://...",
    filepath=Path("foobar...")
    headers=None
    proxies=None
    )
```


