博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[学习笔记]Beautiful Soup语法基本使用
阅读量:4147 次
发布时间:2019-05-25

本文共 2748 字,大约阅读时间需要 9 分钟。

1. Beautiful_Soup语法

Beautiful_Soup语法

find all搜索的是全部节点,find搜索的是满足条件的第一个节点

2.获取网页信息

获取网页信息

思路如下

#  Python # 根据 HTML 网页字符串创建 BeautifulSoup 对象soup = BeautifulSoup(    html_doc,  # HTML 文档字符串    'html.parser',  # HTML 解析器    from_encoding='utf8')  # HTML 文档的编码# 查找所有标签为 a 的节点soup.find_all('a')# 查找所有标签为 a,链接符合 /view/123.html 形式的节点soup.find_all('a', href='/view/123.htm')soup.find_all('a', href=re.compile(r'/view/\d+\.htm'))# 查找所有标签为div,class,为 abc, 文字为 Python 的节点soup.find_all('div', class_='abc', string='Python')# 得到节点 Python# 获取查找到的节点的标签名称node.name# 获取查找到的节点的href 属性node['href']# 获取查找到的节点的链接文字node.get_text()

3.编码

3.1 材料准备

html_doc = """The Dormouse's story

The Dormouse's story

Once upon a time there were three little sisters; and their names wereElsie,Lacie andTillie;and they lived at the bottom of a well.

...

"""

3.2 解析材料数据

运行示例

soup = BeautifulSoup(html_doc, "html.parser", from_encoding='utf8')print("获取所有的链接")links = soup.find_all('a')for link in links:    print(link.name, link['href'], link.get_text())

运行结果

获取所有的链接a http://example.com/elsie Elsiea http://example.com/lacie Laciea http://example.com/tillie Tillie

获取单一链接数据

print("获取 http://example.com/lacie 的链接")link_node = soup.find('a', href="http://example.com/lacie")print(link_node.name, link_node['href'], link_node.get_text())

运行示例

获取 http://example.com/lacie 的链接a http://example.com/lacie Lacie

使用正则表达式

print("正则表达式")link_node = soup.find('a', href=re.compile(r'sie'))print(link_node.name, link_node['href'], link_node.get_text())

运行结果

正则表达式a http://example.com/elsie Elsie

根据 p 段落 class 的内容

print("根据 p 段落 class 的内容")# class_ 需要加下划线p_node = soup.find('p', class_="title")print(p_node.name, p_node.get_text())
根据 p 段落 class 的内容p The Dormouse's story

3.3 完整运行示例

# coding:utf8from bs4 import BeautifulSoupimport rehtml_doc = """The Dormouse's story

The Dormouse's story

Once upon a time there were three little sisters; and their names wereElsie,Lacie andTillie;and they lived at the bottom of a well.

...

"""soup = BeautifulSoup(html_doc, "html.parser", from_encoding='utf8')print("获取所有的链接")links = soup.find_all('a')for link in links: print(link.name, link['href'], link.get_text())print("获取 http://example.com/lacie 的链接")link_node = soup.find('a', href="http://example.com/lacie")print(link_node.name, link_node['href'], link_node.get_text())print("正则表达式")link_node = soup.find('a', href=re.compile(r'sie'))print(link_node.name, link_node['href'], link_node.get_text())print("根据 p 段落 class 的内容")# class_ 需要加下划线p_node = soup.find('p', class_="title")print(p_node.name, p_node.get_text())

运行结果

a http://example.com/lacie Laciea http://example.com/tillie Tillie获取 http://example.com/lacie 的链接a http://example.com/lacie Lacie正则表达式a http://example.com/elsie Elsie根据 p 段落 class 的内容p The Dormouse's story
你可能感兴趣的文章
北京十大情人分手圣地
查看>>
Android自动关机代码
查看>>
Android中启动其他Activity并返回结果
查看>>
2009年33所高校被暂停或被限制招生
查看>>
GlassFish 部署及应用入门
查看>>
X-code7 beta error: warning: Is a directory
查看>>
Error: An App ID with identifier "*****" is not avaliable. Please enter a different string.
查看>>
3.5 YOLO9000: Better,Faster,Stronger(YOLO9000:更好,更快,更强)
查看>>
iOS菜鸟学习--如何避免两个按钮同时响应
查看>>
iOS菜鸟学习—— NSSortDescriptor的使用
查看>>
C语言8
查看>>
Qt实现简单延时
查看>>
qml有关矩形说明
查看>>
在qt中使用QSplitter设置初始比例setStretchFactor失效的解决方法
查看>>
repeater的使用
查看>>
qt msvc编译中文乱码解决
查看>>
qt实现点击出现窗口,点击其他任何地方窗口消失
查看>>
QML DropArea拖拉文件事件
查看>>
CORBA links
查看>>
读后感:>
查看>>