-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
file-server: add --progress
option
#112
Comments
For the file server itself there is no such thing as progress because there's no guarantee that clients will be reading files in their entirety, nor doing it sequentially. We could display the last read offset per client and per file though, like |
Are there many use cases where the client would be reading the file:
I'm assuming file-server is mostly used for binary image uploads? Perhaps we can document then that Your proposal barely contains more information than what we already have (using the I'm mostly interesting in the ETA (and percentage, load bar and elapsed time are also nice to have). |
We have two solutions that require the same amount of effort to implement: a general one and a specialized one. It makes sense to prefer the general one. |
I would like to add something minimal like this as an option to
yakut file-server
.Reason being is that as part of the presentation at DroneX, I would like to show how easy it is to update the firmware on one of our Cyphal-enabled devices (FluxGrip). However, the currently available
--verbose
option just prints out the a bunch of unintelligible gobbledygook.https://pypi.org/project/progressbar2/
The text was updated successfully, but these errors were encountered: