Hey! I had the same issue with python wget last week. Turns out it was failing silently on redirects.
Switched to `requests` with `allow_redirects=True` and it fixed everything. Also, if you’re dealing with big files, chunking helps a ton.
Btw, `wget` in terminal still works better than python wget imo. Maybe just shell out if you can?
Switched to `requests` with `allow_redirects=True` and it fixed everything. Also, if you’re dealing with big files, chunking helps a ton.
Btw, `wget` in terminal still works better than python wget imo. Maybe just shell out if you can?
