We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to be able to do something like
using Downloads, ProgressMeter p = ProgressData("Downloading x") Downloads.download("url", progress = (total, current) -> update!(p, total, current))
(Downloads.download already has a hook for a progress callback with those args)
and get
Downloading x: 53%[=====================> ] 2.2 GiB of 4.3 GiB @ 1.2 MiB/s. ETA 12:32:31
The text was updated successfully, but these errors were encountered:
juliaup has a nice one, assuming it's from rust
Sorry, something went wrong.
This is something I've just added to one of my own packages:
One of the important things in the implementation is having a moving average for calculating the ETA (I use the last 30s of data).
No branches or pull requests
It would be nice to be able to do something like
(Downloads.download already has a hook for a progress callback with those args)
and get
The text was updated successfully, but these errors were encountered: