Progress reporters
Note
Concrete classes described in this chapter implement methods defined in AbstractProgressListener
- class b2sdk.v2.AbstractProgressListener(description='')[source]
Interface expected by B2Api upload and download methods to report on progress.
This interface just accepts the number of bytes transferred so far. Subclasses will need to know the total size if they want to report a percent done.
- Parameters:
description (
str
) –
- abstract set_total_bytes(total_byte_count)[source]
Always called before __enter__ to set the expected total number of bytes.
May be called more than once if an upload is retried.
- abstract bytes_completed(byte_count)[source]
Report the given number of bytes that have been transferred so far. This is not a delta, it is the total number of bytes transferred so far.
Transfer can fail and restart from the beginning, so byte count can decrease between calls.
- class b2sdk.v2.TqdmProgressListener(*args, **kwargs)[source]
Progress listener based on tqdm library.
This listener displays a nice progress bar, but requires tqdm package to be installed.
- class b2sdk.v2.SimpleProgressListener(*args, **kwargs)[source]
Just a simple progress listener which prints info on a console.
- class b2sdk.v2.DoNothingProgressListener(description='')[source]
This listener gives no output whatsoever.
- Parameters:
description (
str
) –
- class b2sdk.v2.ProgressListenerForTest(*args, **kwargs)[source]
Capture all the calls so they can be checked.