BeautifulSoup學習筆記1

from bs4 import BeautifulSouphtml

BeautifulSoup是一個類,繼承了Tag類.每一個BeautifulSoup對象實例,經過html內容進行構建.以下:
bsObj=BeautifulSoup(urllib.request.urlopen(url).read())函數

BeautifulSoup有兩個重要的函數,findfind_all,經過此2函數,能夠在葉面中找到須要的tag。url

bs4中共有4種對象,分別是BeautifulSoup,Tag,NavigableString和Comment對象。spa

[獲取Tag對象屬性]
經過Tag.attrs['屬性名']能夠獲取對應標籤的相應屬性。
 htm

相關文章
相關標籤/搜索