CODE IS BELOW:
1st You Need To Install Pytube ! For that you need to run the command
pip install pytube
After Installing Pytube From Above , You are good to go !
from pytube import YouTube
link = input("Enter the video link : ")
print("Downloading.../")
YouTube(link).streams.first().download()
print("Download Successful! Check This Folder For Downloaded Video C/Users/YOUR_USER_NAME")
Comments
Post a Comment