grab
grab copied to clipboard
A download manager package for Go
Hi! I can't update my grab (v2) module to v3 because of https://pkg.go.dev/github.com/cavaliercoder/grab has only [Version: v2.0.0+incompatible](https://pkg.go.dev/github.com/cavaliercoder/grab?tab=versions) Latest Could you update it please?
It will be more easy to migrate from code like `io.Copy(writer, resp.Body)` to `grab` if `grab` supports new download to an opened writer. ```golang grab.NewRequestToWriter(writer io.Writer, url string) ```
Hi, at 2017 we implemented a solution like this: https://github.com/cavaliercoder/grab/issues/17 We updated our project, recently. Now there ist an error message at `client.HTTPClient.Transport = &http.Transport{` The client.HTTPClient.**Transport** is an unresolved...
maybe you have another idea to achieve this, i need to decrypt body data before saving to file https://github.com/hbakhtiyor/gt/blob/fs/gt/fsend/download.go#L45-L59
This PR aims to achieve the following outcomes: * grab sets `If-Modified-Since` for completed downloads and checks for a `304` response * grab compares `Last-Modified` headers with local timestamps when...
i saw that the resp.Size was a int64 val before, but it was a function now.
I'm receiving an error while trying to download a file using POST, I've successfully done this with regular net/http. But the net/http is having issues with larger files, which is...
Apologies if this is some rookie mistake - I'm fairly new to Go :-) When trying the basic grab example (straight from the homepage), I'm getting an error: `cannot call...
Time to wait should be expected download chunk time minus actual download chunk time, and then plus last sleep adjust time for compensation. Actual sleep time is not equal to...
Hi guys, Hope you are all well ! I have often the following error when downloading with grab: ```bash open file failure, got err bad content length ``` Any way...