Skip to content

add progress bar in download file #487

@rafaael1

Description

@rafaael1

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:

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions