Metadata-Version: 2.1
Name: image-dl
Version: 0.0.1
Summary: A fast and simple image downloader in python
Home-page: https://github.com/sdtblck/image-dl
Author: Sid Black
Author-email: sdtblck@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# image-dl

A fast and straightforward image downloader in python using multiprocessing + requests

## Example usage:

```python
from image_dl import download, random_valid_url

url_list = [random_valid_url() for _ in range(100)]
download(url_list, 'images') # list of urls / destination folder
```

