Metadata-Version: 2.1
Name: petit-downloader
Version: 0.1.6
Summary: Download files in an easier way
Home-page: https://github.com/Plawn/petit_downloader
Author: Plawn
Author-email: plawn.yay@gmail.com
License: apache-2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown

[Latest Version = 0.17]

## [Installation]

```sh
$ pip install Fancy_Downloader
```

##[How to use]

```python
from petit_downloader import Download
d = Download(url=url, filename="test.zip", type="serial") #verbose requeries the Fancy_Progressbar lib
d.download()
```
# Download types available

* basic
* serial
* parrarel
* serial_parralel

# Objects available

```python
Download()
DownloadContainer()
Action(func, *args)
```


## Update

Can now reload stopped download in order to continue it, use :
```python
# here you load the json data from the file or your db
d:DownloadProgressSave = ...
download = from_save(d)
# this will resume your download
download.download()
```

