Open rafaael1 opened 9 months ago
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:
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:
And,
Output: