即時通訊新的python,或任何comp語言的事情,但即時通訊嘗試刮從使用此代碼的網站標題,但它一直打印「無」,如果標題,或任何標籤,如果我取代它,doesn不存在。爲什麼我不能在美麗的湯中找到這個標籤?
import bs4
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
my_url = "https://www.roblox.com/catalog/?CatalogContext=1&Keyword=the%20item&SortAggregation=5&LegendExpanded=true&Category=2"
uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()
page_soup = soup(page_html, "html.parser")
ttt = page_soup.find("div", {"class":"CatalogItemName notranslate"})
item = ttt.a.text
print(item)
這不回答這個問的問題。他正在將頁面內容加入到BeautifulSoup中... – Baldrickk
@Baldrickk他說他試圖從網站上刮掉一個標題,但無法做到這一點 –
他正試圖獲得「一個標題」,而不是頁面標題。 – VMRuiz