(url, output_path)
| 28 | |
| 29 | |
| 30 | def download_url(url, output_path): |
| 31 | with DownloadProgressBar(unit='B', unit_scale=True, |
| 32 | miniters=1, desc=url.split('/')[-1]) as t: |
| 33 | urllib.request.urlretrieve(url, filename=output_path, reporthook=t.update_to) |
| 34 | |
| 35 | |
| 36 | def get_path(base_path): |
no test coverage detected