HTTP Error 410: Gone i am getting the above error while executing the code
The code is given below :
from pytube import YouTube
url = input("Enter the url : ")
yt = YouTube(url)
streams = yt.streams
streams.download()
I am trying to download a YouTube video using pytube