AttributeError: module 'ytsearch' has no attribute 'geturl'
AttributeError: module 'ytsearch' has no attribute 'geturl'
我想通过 ytsearch 在 YouTube 上搜索一些视频,如下所示:
import ytsearch
ytsearch.geturl("CNN News", official_video=False)
但是当我这样做时,我得到:
AttributeError: module 'ytsearch' has no attribute 'geturl'
我正在使用 ytsearch-0.3.7,找不到任何相关文档。
因为ytsearch没有属性geturl。
py -3 -m pip install -U yt-search
import yt_search
yt = yt_search.build("API KEY")
search_result = yt.search("CNN", sMax=10, sType=["video"])
print(search_result.title)
它对我有用。要获取 API 密钥,请参考 this
输出:
['CNN', 'New virus cases on the rise in almost half of US states', 'LZ Granderson to Ben Carson: Just stop it. Get out of the way.', 'Thousands mourn George Floyd's death at Houston memorial', 'Ivanka Trump blames cancel culture for canceled commencement speech', 'CNN Poll: President Trump losing ground to Biden amid chaotic week', 'Colin Powell explains why Trump shouldn't be re-elected', '¿Cómo debería ser una reforma policial en Estados Unidos?', 'Colin Powell: President Trump has drifted away from the Constitution', 'CNN Reporter Arrested at Minneapolis Protest, Taylor Swift Rips Trump's "Shooting" Tweet | THR News']
我想通过 ytsearch 在 YouTube 上搜索一些视频,如下所示:
import ytsearch
ytsearch.geturl("CNN News", official_video=False)
但是当我这样做时,我得到:
AttributeError: module 'ytsearch' has no attribute 'geturl'
我正在使用 ytsearch-0.3.7,找不到任何相关文档。
因为ytsearch没有属性geturl。
py -3 -m pip install -U yt-search
import yt_search
yt = yt_search.build("API KEY")
search_result = yt.search("CNN", sMax=10, sType=["video"])
print(search_result.title)
它对我有用。要获取 API 密钥,请参考 this
输出:
['CNN', 'New virus cases on the rise in almost half of US states', 'LZ Granderson to Ben Carson: Just stop it. Get out of the way.', 'Thousands mourn George Floyd's death at Houston memorial', 'Ivanka Trump blames cancel culture for canceled commencement speech', 'CNN Poll: President Trump losing ground to Biden amid chaotic week', 'Colin Powell explains why Trump shouldn't be re-elected', '¿Cómo debería ser una reforma policial en Estados Unidos?', 'Colin Powell: President Trump has drifted away from the Constitution', 'CNN Reporter Arrested at Minneapolis Protest, Taylor Swift Rips Trump's "Shooting" Tweet | THR News']