3

我有以下代码:

from pytube import YouTube

yt = YouTube('https://www.youtube.com/watch?v=9bZkp7q19f0')
print(yt.title)

并被抛出以下错误

Traceback (most recent call last):
  File "C:\Users\tom\Desktop\Desktop\archiver.py", line 4, in <module>
    print(yt.title)
  File "C:\Users\tom\AppData\Local\Programs\Python\Python37-32\lib\site-packages\pytube\__main__.py", line 254, in title
    return self.player_config_args['title']
KeyError: 'title'

这里出了什么问题?

4

1 回答 1

2

很多人都遇到这个问题,建议尝试的事情是进行此拉取请求中提到的以下更改。

https://github.com/nficano/pytube/pull/435/files

于 2019-08-30T22:03:55.140 回答