-
-
Notifications
You must be signed in to change notification settings - Fork 391
Open
Labels
enhancementNew feature or requestNew feature or request
Description
It is possible to add a progress bar to monitor the download of files ?
I tried using a callback function, but the progress bar appears only once. Code below:
def download_progress(current, total):
global pbar
global prev_curr
pbar.update(current - prev_curr)
prev_curr = current
And,
async def download_media(...):
....
if _can_download(_type, file_formats, file_format):
global pbar
global prev_curr
...
prev_curr = 0
pbar = tqdm(
total=getattr(message, _type).file_size, desc="Downloading...", leave=False,
unit='B', unit_scale=True
)
pbar.clear()
Output:
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request