Skip to content
Advertisement

Tag: pafy

Downloading YouTube videoes with pafy module with tqdm progressbar

I am trying to make a code to download videos from YouTube using pafy module and a progressbar using tqdm module, however the progressbar is finished before the download complete. here is my code download piece: here is a pic a the progressbar: https://i.stack.imgur.com/VMBUN.png Answer Problem is because pbar.update() expects value current_received – previous_received download gives only current_received so you

Advertisement