网络抓取Youtube页面



我正试图通过链接在网上抓取一个youtube频道名称。但我得到了错误代码:

title = response.find_all('div', class_= "style-scope ytd-channel-name")
AttributeError: 'Response' object has no attribute 'find_all'

链接到站点:https://www.youtube.com/channel/UCHOgE8XeaCjlgvH0t01fVZg

代码:

url = 'https://www.youtube.com/channel/UCHOgE8XeaCjlgvH0t01fVZg'
response = requests.get(url)
title = response.find_all('div', class_= "style-scope ytd-channel-name")
soup = BeautifulSoup(title.text, 'lxml')
print(soup)

谢谢!

我们可以使用它。

from requests_html import HTMLSession
from bs4 import BeautifulSoup as bs # importing BeautifulSoup

video_url = "https://www.youtube.com/channel/UCHOgE8XeaCjlgvH0t01fVZg"
# init an HTML Session
session = HTMLSession()
# get the html content
response = session.get(video_url)
# execute Java-script
response.html.render(sleep=1)
# create bs object to parse HTML
soup = bs(response.html.html, "html.parser")
name = soup.find('yt-formatted-string', class_='style-scope ytd-channel-name')
print(name.text)

输出:-

TheTekkitRealm

以下代码返回div:

url = "https://www.youtube.com/channel/UCHOgE8XeaCjlgvH0t01fVZg"
req = requests.get(url)
soup = BeautifulSoup(req.text, "html.parser")
print(soup.div)

返回的值可以通过"汤"进行更改值(例如汤、标题(。

我链接到文档是因为我认为它对您也很有用:https://www.crummy.com/software/BeautifulSoup/bs4/doc/#

最新更新