Add download timeout
Closed this issue · 0 comments
guoguo12 commented
From the Requests documentation:
You can tell Requests to stop waiting for a response after a given number of seconds with the
timeout
parameter. Nearly all production code should use this parameter in nearly all requests. Failure to do so can cause your program to hang indefinitely.
This caused a lot of pain at #25, so we should fix this ASAP.