Metadata-Version: 2.1
Name: spider-download
Version: 1.0.9
Summary: 多线程下载
Author-email: funcdefmain <741132517@qq.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: loguru

# spider-download
usage
```python
from spider_download import Spider

task_list = []
url = "https://assets.mixkit.co/active_storage/sfx/833/833-preview.mp3"
filename = url.split('/')[-1]
task_list.append((url, filename))

spider = Spider(task_list)
spider.save_path = r'D:\Download'
spider.proxies = {'https': 'http://127.0.0.1:7890'}
spider.run()
```
