{PYTHON} getting error while using pytube in python

42 views Asked by At

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

0

There are 0 answers