The fastest file download client
-
Updated
Oct 27, 2019 - Go
Add a description, image, and links to the pget topic page so that developers can more easily learn about it.
To associate your repository with the pget topic, visit your repo's landing page and select "manage topics."
requests.get(self.url, stream=True, headers=self.headers)
May cause eternal wait for some case, add timeout for it may be better.
something like:
requests.get(self.url, stream=True, headers=self.headers, timeout=timeout)