小编Mad*_*jid的帖子

Pytube: urllib.error.HTTPError: HTTP 错误 410: 消失

我现在在几个程序上都遇到了这个错误。我尝试升级 pytube、重新安装它、尝试一些修复、更改 URL 和代码,但似乎没有任何效果。

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!!")
Run Code Online (Sandbox Code Playgroud)

这是错误代码:

from pytube import YouTube

#ask for the link from user
link = input("Enter the link of YouTube video you …
Run Code Online (Sandbox Code Playgroud)

python http http-error pytube

21
推荐指数
4
解决办法
3万
查看次数

标签 统计

http ×1

http-error ×1

python ×1

pytube ×1