pySmartDL
pySmartDL copied to clipboard
A Smart Download Manager for Python
I assume spelling is wrong, so i created pull request to fix it, please review
I have a url. curl -H "Referer: Url" Link How to implement it in pysmartdl tried request_args = {"headers": {"Referer": "url", "User-Agent": "Mozilla/5.0"}} but not working says 410 gone. same...
In [pySmartDL.py](https://github.com/iTaybb/pySmartDL/blob/master/pySmartDL/pySmartDL.py) in function 'post_threadpool_actions' there is the following line: `errMsg = 'Diff between downloaded files and expected filesizes is {}B (filesize: {}, expected_filesize: {}, {} threads).'.format(total_filesize, expected_filesize, diff, threads)`...
hi, it should be possible to first perform a head request, then from that returned response, read the headers. this way, it will be possible to obtain the filenames from...