将网址作为YouTube搜索查询中的列表返回

时间:2015-03-16 04:00:14

标签: python search youtube youtube-api

如何创建包含普通YouTube文字搜索视频网址的列表?

1 个答案:

答案 0 :(得分:28)

我给你写了一个快速的脚本来做到这一点。将textToSearch替换为您的查询。它使用urllib从YouTube结果的第一页中提取结果,并通过使用BeautifulSoup解析页面来打印视频的所有链接。如果您有任何问题,请告诉我。

import urllib.request
from bs4 import BeautifulSoup

textToSearch = 'hello world'
query = urllib.parse.quote(textToSearch)
url = "https://www.youtube.com/results?search_query=" + query
response = urllib.request.urlopen(url)
html = response.read()
soup = BeautifulSoup(html, 'html.parser')
for vid in soup.findAll(attrs={'class':'yt-uix-tile-link'}):
    print('https://www.youtube.com' + vid['href'])

这给出了输出:

https://www.youtube.com/watch?v=al2DFQEZl4M
https://www.youtube.com/watch?v=pRKqlw0DaDI
...
https://www.youtube.com/watch?v=9sQEQkMDBjw