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 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:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: