中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Python爬蟲中如何創建 beautifulsoup 對象

發布時間:2020-11-12 09:14:18 來源:億速云 閱讀:167 作者:小新 欄目:編程語言

小編給大家分享一下Python爬蟲中如何創建 beautifulsoup 對象,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

首先必須要導入 bs4 庫

from bs4 import BeautifulSoup

我們創建一個字符串,后面的例子我們便會用它來演示

html = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p name="dromouse"><b>The Dormouse's story</b></p>
<p>Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" id="link1"><!-- Elsie --></a>,
<a href="http://example.com/lacie" id="link2">Lacie</a> and
<a href="http://example.com/tillie" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p>...</p>
"""

創建 beautifulsoup 對象

soup = BeautifulSoup(html)

另外,我們還可以用本地 HTML 文件來創建對象,例如

soup = BeautifulSoup(open('index.html'))

上面這句代碼便是將本地 index.html 文件打開,用它來創建 soup 對象 下面我們來打印一下 soup 對象的內容,格式化輸出

print soup.prettify()

輸出結果:

<html>
 <head>
  <title>
   The Dormouse's story
  </title>
 </head>
 <body>
  <p name="dromouse">
   <b>
    The Dormouse's story
   </b>
  </p>
  <p>
   Once upon a time there were three little sisters; and their names were
   <a href="http://example.com/elsie" id="link1">
    <!-- Elsie -->
   </a>
   ,
   <a href="http://example.com/lacie" id="link2">
    Lacie
   </a>
   and
   <a href="http://example.com/tillie" id="link3">
    Tillie
   </a>
   ;
and they lived at the bottom of a well.
  </p>
  <p>
   ...
  </p>
 </body>
</html>

看完了這篇文章,相信你對Python爬蟲中如何創建 beautifulsoup 對象有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

寻乌县| 郑州市| 阿拉尔市| 锡林郭勒盟| 鸡西市| 莒南县| 仙桃市| 清水河县| 临朐县| 庄浪县| 那坡县| 寿宁县| 西丰县| 方城县| 柳河县| 陆河县| 祁门县| 乡城县| 慈溪市| 措勤县| 游戏| 会昌县| 新蔡县| 天等县| 久治县| 漳浦县| 淅川县| 青田县| 绥化市| 钟山县| 汝城县| 洪江市| 天柱县| 南昌县| 尼勒克县| 南郑县| 黎平县| 平邑县| 白山市| 龙泉市| 马尔康县|