Metadata-Version: 2.1
Name: py3_wget
Version: 0.0.6
Summary: A simple tool to download files with python, supporting a progress bar
Author: Gabriele Berton
Author-email: <berton.gabri@gmail.com>
Keywords: python,download,progress bar
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Requests
Requires-Dist: tqdm


# py3_wget
A tool like wget for python, supporting a progress bar

Install with
```
pip install py3_wget
```

and use simply like
```
import py3_wget
py3_wget.download_file(
    url="https://universityofadelaide.app.box.com/index.php?rm=box_download_shared_file&shared_name=zkfk1akpbo5318fzqmtvlpp7030ex4up&file_id=f_1424424688104",
    output_path="winter.tar.gz"
)
```

### TODO list
- Improve tests
- Add possibility to resume from partial download
