Metadata-Version: 2.1
Name: PyFDown
Version: 0.0.6
Summary: A fast downloader with Python
Home-page: https://github.com/Nemo2011/PyFDown
Author: Nemo2011
Author-email: yimoxia@outlook.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# PyFDown: Fast Downloading in Python. 

PyFDown is a python library. This library can downloading file fast. 

# Install

``` powershell
    python -m pip install PyFDown
```

# Usage

``` python
    from PyFDown import download
    URL = "Link to your file"
    HEADERS = {
        "User-Agent": "Mozilla/5.0",
        "Referer": "https://www.bilibili.com/"
    }
    download(URL, "test", user_headers=HEADERS)
```

# Info

Max parts: 128
Default one part: 1MB


