https://plus.google.com/s/casasgrandes27%40gmail.com/top與蟒蛇
我需要抓取與蟒蛇以下頁面,但我需要它的HTML鏈接沒有的通用源代碼爬行後如何獲得的HTML代碼。
例如
打開鏈接:plus.google.com/s/casasgrandes27%40gmail.com/top而不登錄第二最後一個縮略圖將「G套件」。
<div class="Wbuh5e" jsname="r4nke">G Suite</div>
執行此python代碼後,我無法找到上述的HTML代碼行。
from bs4 import BeautifulSoup
import requests
L = list()
r = requests.get("https://plus.google.com/s/casasgrandes27%40gmail.com/top")
data = r.text
soup = BeautifulSoup(data,"lxml")
print(soup)
我使用BeautifulSoup要抓取頁面,請參閱上面的代碼。 –