Posts

Showing posts from January, 2021

Y.T Videos downloader [Python]

 Firstly install pytube module by typing "pip install pytube" in terminal  For downloading .py file :  alexjr.itch.io from pytube.cli import on_progress from pytube import YouTube import os video_url = input ( "Paste Link Here :" ) try : yt = YouTube(video_url , on_progress_callback =on_progress) yt.streams\ .filter( file_extension = 'mp4' )\ .get_highest_resolution()\ .download() except EOFError as err: print (err) else : print ( "Downloaded Successfully :)" )