亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Beautiful Soup4庫文檔學習

發布時間:2020-07-11 11:55:52 來源:網絡 閱讀:543 作者:Eugenebo 欄目:開發技術

https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/#id4

中文版BeautifulSoup庫

 

作用

  1. 提取HTML和XML文檔中的數據

  2. 修改、導航、查找文檔

 

創建html_doc

>>> html_doc = """
... <html><head><title>The Dormouse's story</title></head> 
... <body> 
... <p class="title"><b>The Dormouse's story</b></p> 
...  
... <p class="story">Once upon a time there were three little sisters; and their names were 
... <a class="sister" id="link1">Elsie</a>, 
... <a class="sister" id="link2">Lacie</a> and 
... <a class="sister" id="link3">Tillie</a>; 
... and they lived at the bottom of a well.</p> 
...  
... <p class="story">...</p> 
... """

 

#使用bs4庫
>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup(html_doc)
>>> print soup.prettify()
<html>
 <head>
  <title>
   The Dormouse's story
  </title>
 </head>
 <body>
  <p class="title">
   <b>
    The Dormouse's story
   </b>
  </p>
  <p class="story">
   Once upon a time there were three little sisters; and their names were
   <a class="sister" id="link1">
    Elsie
   </a>
   ,
   <a class="sister" id="link2">
    Lacie
   </a>
   and
   <a class="sister" id="link3">
    Tillie
   </a>
   ; 
and they lived at the bottom of a well.
  </p>
  <p class="story">
   ...
  </p>
 </body>
</html>

 

提取所需的字段
>>> soup.title                                                    #提取標題
<title>The Dormouse's story</title>
>>> soup.title.name
'title'


>>> soup.title.string                                            #提取標題的內容
u"The Dormouse's story"


>>> soup.a                                                        #提取<a>字段信息(第一個<a>)
<a class="sister" id="link1">Elsie</a>

>>> soup.p
<p class="title"><b>The Dormouse's story</b></p>
>>> soup.p['class']
['title']

 

查找<a>
>>> soup.find_all('a')    
[<a class="sister" id="link1">Elsie</a>, <a class="sister" id="link2">Lacie</a>, <a class="sister" id="link3">Tillie</a>]

>>> for link in soup.find_all('a'):
...     print link.get('href')                        #提取link, href字段
...
http://example.com/elsie
http://example.com/lacie
http://example.com/tillie

 

 

 

 

 

 

 

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

信宜市| 基隆市| 伊吾县| 南昌县| 瓦房店市| 霍林郭勒市| 浦县| 雷州市| 静乐县| 九龙坡区| 东阳市| 新和县| 柘荣县| 土默特左旗| 永平县| 宁河县| 灌阳县| 文昌市| 务川| 武川县| 集贤县| 门源| 德化县| 河南省| 双峰县| 休宁县| 乌兰察布市| 乳源| 迭部县| 来宾市| 浦城县| 泾源县| 禹城市| 民和| 长宁县| 富阳市| 张家口市| 万宁市| 桓仁| 苏州市| 崇仁县|