Homepage
Open in app
Sign in
Get started
Mr.Brown柏朗棕
Python
JavaScript
生活相關
個人分享
食記
Tagged in
Beautifulsoup
Mr.Brown柏朗棕
小小工程師的隨手紀錄
More information
Followers
29
Elsewhere
More, on Medium
Beautifulsoup
柏朗棕 Mr.Brown
in
Mr.Brown柏朗棕
Apr 17, 2019
[Python] Beautiful Soup 隨手筆記
find()
回傳第一個找到的區塊
find_all()
則是回傳一個 list
soup.find_all("標籤類型", class_ = "class名稱", attrs={"自定義標籤的識別標記": "自定義標籤的值"})
soup.find_all("div", class_="image-Items", attrs={"data-v-7f29b543": " "})
Read more…