0
我現在正在使用網絡爬蟲,而且似乎無法從特定網站獲取div內部的類。以下是我的代碼。我用BeautifulSoup在Python3如何使用BeautifulSoup查找嵌套div中的類python
import requests
from bs4 import BeautifulSoup as bs
response = requests.get('https://e27.co/startup/flipkart').text
soup = bs(response, 'html.parser')
content_div = soup.findAll('h1',class_ = 'profile-startup')
print(content_div)
我想提取具有一流「的輪廓,啓動」的H1內的文本。上面的代碼什麼也沒有返回你們能幫我嗎?
感謝您的幫助!我會嘗試使用硒! –