我一直在尝试使用pytube模块,每次使用它的client属性时,它都会出现以下错误:

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    client = pytube.Client('my-app-identifier')
AttributeError: 'module' object has no attribute 'Client'

最佳答案

你所看到的是皮特管,一个由诺亚·塞拉斯和凯·鲍威尔撰写的图书馆,可以在“PyTube documentation”上找到。图书馆已经5年没有更新了,随着YouTube的许多变化,它很可能将不再工作。
GitHub中获得的PyTube库是Nick Ficano编写的完全不同的库,并没有大量的文档。相反,唯一的手册在PyPI上。

09-06 04:17