国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

python爬蟲beautifulsoup解析html方法

瀏覽:19日期:2022-07-03 08:08:36

用BeautifulSoup 解析html和xml字符串

python爬蟲beautifulsoup解析html方法

實例:

#!/usr/bin/python# -*- coding: UTF-8 -*-from bs4 import BeautifulSoupimport re#待分析字符串html_doc = '''<html><head> <title>The Dormouse’s story</title></head><body><p class='title aq'> <b> The Dormouse’s story </b></p><p class='story'>Once upon a time there were three little sisters; and their names were <a rel='external nofollow' id='link1'>Elsie</a>, <a rel='external nofollow' id='link2'>Lacie</a> and <a rel='external nofollow' id='link3'>Tillie</a>; and they lived at the bottom of a well.</p><p class='story'>...</p>'''# html字符串創建BeautifulSoup對象soup = BeautifulSoup(html_doc, ’html.parser’, from_encoding=’utf-8’)#輸出第一個 title 標簽print soup.title#輸出第一個 title 標簽的標簽名稱print soup.title.name#輸出第一個 title 標簽的包含內容print soup.title.string#輸出第一個 title 標簽的父標簽的標簽名稱print soup.title.parent.name#輸出第一個 p 標簽print soup.p#輸出第一個 p 標簽的 class 屬性內容print soup.p[’class’]#輸出第一個 a 標簽的 href 屬性內容print soup.a[’href’]’’’soup的屬性可以被添加,刪除或修改. 再說一次, soup的屬性操作方法與字典一樣’’’#修改第一個 a 標簽的href屬性為 http://www.baidu.com/soup.a[’href’] = ’http://www.baidu.com/’#給第一個 a 標簽添加 name 屬性soup.a[’name’] = u’百度’#刪除第一個 a 標簽的 class 屬性為del soup.a[’class’]##輸出第一個 p 標簽的所有子節點print soup.p.contents#輸出第一個 a 標簽print soup.a#輸出所有的 a 標簽,以列表形式顯示print soup.find_all(’a’)#輸出第一個 id 屬性等于 link3 的 a 標簽print soup.find(id='link3')#獲取所有文字內容print(soup.get_text())#輸出第一個 a 標簽的所有屬性信息print soup.a.attrsfor link in soup.find_all(’a’): #獲取 link 的 href 屬性內容 print(link.get(’href’))#對soup.p的子節點進行循環輸出 for child in soup.p.children: print(child)#正則匹配,名字中帶有b的標簽for tag in soup.find_all(re.compile('b')): print(tag.name)

爬蟲設計思路:

python爬蟲beautifulsoup解析html方法

詳細手冊:

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

到此這篇關于python爬蟲beautifulsoup解析html方法 的文章就介紹到這了,更多相關beautifulsoup解析html內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 国产亚洲一级精品久久 | 久久久精品久久久久三级 | a一级毛片视频免费看 | 人成精品视频三区二区一区 | 亚洲在线观看免费 | 四虎午夜剧场 | 能直接看的一级欧美毛片 | 亚洲一级网站 | 欧美国产成人一区二区三区 | 亚洲波多野结衣日韩在线 | 欧美成人午夜毛片免费影院 | 成人精品视频网站 | 波多野结衣视频在线观看地址免费 | 国产一区二区三区久久 | 一级毛片真人免费播放视频 | 成人福利在线 | 中日韩美中文字幕 | 久久a热6 | 九九精品视频在线播放 | 国产黄色在线播放 | 日韩中文字幕精品一区在线 | 伊人色综合久久天天网蜜月 | 日本免费在线观看视频 | 中文在线观看视频 | 成人午夜毛片在线看 | 日本一级特黄啪啪片 | 欧美一级aⅴ毛片 | 久久久久久久久网站 | 欧美片网站免费 | 色碰碰| 国产性色 | avav在线看| 在线观看亚洲免费 | 一区二区三区四区五区六区 | 日韩精品久久久毛片一区二区 | 欧美日本高清 | 国产一级a毛片高清 | 久草综合在线视频 | 美女一级片 | a级毛片在线视频免费观看 a级免费 | 午夜精品一区二区三区在线观看 |