如何通过pytube python模块下载youtube视频

问题描述 投票:0回答:1

这里是代码:

>>> from pytube import YouTube
>>> v=YouTube('https://www.youtube.com/watch?v=Wl2OyaZVU3U')
>>> v.title
'Maroon 5 - Memories (Lyrics)'
>>> v.streams
<pytube.query.StreamQuery object at 0x7f76859e3a20>
>>> v.download()
Traceback (most recent call last):
  File "<pyshell#9>", line 1, in <module>
    v.download()
AttributeError: 'YouTube' object has no attribute 'download'

我该如何解决这个问题?

python python-3.7 pytube kali-linux
1个回答
0
投票

documentation库上有一个示例,在该示例中,该库使用对象的流成员来下载。

在您的代码中为:

>>> v.streams.first().download()

另请参见API doc

© www.soinside.com 2019 - 2024. All rights reserved.