Skip to content

Instantly share code, notes, and snippets.

@shubham1710
Last active September 18, 2022 19:31
Show Gist options
  • Save shubham1710/19a0bd65da136ab7c56971036c2e1959 to your computer and use it in GitHub Desktop.
Save shubham1710/19a0bd65da136ab7c56971036c2e1959 to your computer and use it in GitHub Desktop.
from pytube import YouTube
#ask for the link from user
link = input("Enter the link of YouTube video you want to download: ")
yt = YouTube(link)
#Showing details
print("Title: ",yt.title)
print("Number of views: ",yt.views)
print("Length of video: ",yt.length)
print("Rating of video: ",yt.rating)
#Getting the highest resolution possible
ys = yt.streams.get_highest_resolution()
#Starting download
print("Downloading...")
ys.download()
print("Download completed!!")
@lvlupharshit
Copy link

I am trying to run this and getting this error. Can you help please.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment