如何查看python beautifulsoup(Python爬虫beautifulsoup4常用的解析方法总结)
类别:脚本大全 浏览量:1689
时间:2022-01-24 00:25:28 如何查看python beautifulsoup
Python爬虫beautifulsoup4常用的解析方法总结摘要
- 如何用beautifulsoup4解析各种情况的网页
beautifulsoup4的使用
关于beautifulsoup4,官网已经讲的很详细了,我这里就把一些常用的解析方法做个总结,方便查阅。
装载html文档
使用beautifulsoup的第一步是把html文档装载到beautifulsoup中,使其形成一个beautifulsoup对象。
|
import requests from bs4 import BeautifulSoup url = "http://new.qq.com/omn/20180705/20180705A0920X.html" r = requests.get(url) htmls = r.text #print(htmls) soup = BeautifulSoup(htmls, 'html.parser' ) |
初始化BeautifulSoup类时,需要加入两个参数,第一个参数即是我们爬到html源码,第二个参数是html解析器,常用的有三个解析器,分别是”html.parser”,”lxml”,”html5lib”,官网推荐用lxml,因为效率高,当然需要pip install lxml一下。
当然这三种解析方式在某些情况解析得到的对象内容是不同的,比如对于标签不完整这一情况(p标签只有一半):
|
soup = BeautifulSoup( "<a></p>" , "html.parser" ) # 只有起始标签的会自动补全,只有结束标签的灰自动忽略 # 结果为:<a></a> soup = BeautifulSoup( "<a></p>" , "lxml" ) #结果为:<html><body><a></a></body></html> soup = BeautifulSoup( "<a></p>" , "html5lib" ) # html5lib则出现一般的标签都会自动补全 # 结果为:<html><head></head><body><a><p></p></a></body></html> |
使用
在使用中,我尽量按照我使用的频率介绍,毕竟为了查阅~
- 按照标签名称、id、class等信息获取某个标签
|
html = '<p class="title" id="p1"><b>The Dormouses story</b></p>' soup = BeautifulSoup(html, 'lxml' ) #根据class的名称获取p标签内的所有内容 soup.find( class_ = "title" ) #或者 soup.find( "p" , class_ = "title" id = "p1" ) #获取class为title的p标签的文本内容"The Dormouse's story" soup.find( class_ = "title" ).get_text() #获取文本内容时可以指定不同标签之间的分隔符,也可以选择是否去掉前后的空白。 soup = BeautifulSoup( '<p class="title" id="p1"><b> The Dormouses story </b></p><p class="title" id="p1"><b>The Dormouses story</b></p>' , "html5lib" ) soup.find( class_ = "title" ).get_text( "|" , strip = True ) #结果为:The Dormouses story|The Dormouses story #获取class为title的p标签的id soup.find( class_ = "title" ).get( "id" ) #对class名称正则: soup.find_all( class_ = re. compile ( "tit" )) #recursive参数,recursive=False时,只find当前标签的第一级子标签的数据 soup = BeautifulSoup( '<html><head><title>abc' , 'lxml' ) soup.html.find_all( "title" , recursive = False ) |
- 按照标签名称、id、class等信息获取多个标签
|
soup = BeautifulSoup( '<p class="title" id="p1"><b> The like story </b></p><p class="title" id="p1"><b>The Dormouses story</b></p>' , "html5lib" ) #获取所有class为title的标签 for i in soup.find_all( class_ = "title" ): print (i.get_text()) #获取特定数量的class为title的标签 for i in soup.find_all( class_ = "title" ,limit = 2 ): print (i.get_text()) |
- 按照标签的其他属性获取某个标签
|
html = '<a alog-action="qb-ask-uname" href="/usercent" rel="external nofollow" target="_blank">蜗牛宋</a>' soup = BeautifulSoup(html, 'lxml' ) # 获取"蜗牛宋",此时,该标签里既没有class也没有id,需要根据其属性来定义获取规则 author = soup.find( 'a' ,{ "alog-action" : "qb-ask-uname" }).get_text() #或 author = soup.find(attrs = { "alog-action" : "qb-ask-uname" }) |
- 找前头和后头的标签
|
soup.find_all_previous( "p" ) soup.find_previous( "p" ) soup.find_all_next( "p" ) soup.find_next( "p" ) |
- 找父标签
|
soup.find_parents( "li" ) soup.find_parent( "li" ) |
- css选择器
|
soup.select( "title" ) #标签名 soup.select( "html head title" ) #多级标签名 soup.select( "p > a" ) #p内的所有a标签 soup.select( "p > #link1" ) #P标签内,按 id 查标签 soup.select( "#link1 ~ .sister" ) #查找相同 class 的兄弟节点 soup.select( "#link1 + .sister" ) soup.select( ".sister" ) #按class名称查 soup.select( "#sister" ) #按 id 名称查 soup.select( 'a[href="http://example.com/elsie" rel="external nofollow" ]' ) # 按标签的属性查 soup.select( 'a[href$="tillie"]' ) soup.select_one( ".sister" ) |
注意几个可能出现的错误,可以用try捕获来防止爬虫进程
- UnicodeEncodeError: ‘charmap' codec can't encode character u'\xfoo' in position bar (或其它类型的 UnicodeEncodeError
需要转码
- AttributeError: ‘NoneType' object has no attribute ‘foo'
没这个属性
就介绍这么多,应该可以覆盖大部分网页结构了吧~!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/lk7688535/article/details/80924924
您可能感兴趣
- python数值基本运算方法(Python常见数字运算操作实例小结)
- python socket 库(Pythony运维入门之Socket网络编程详解)
- python操作sql server数据库(Python 数据库操作 SQLAlchemy的示例代码)
- python如何编写判断正负数程序(Python实现判断一个整数是否为回文数算法示例)
- pythontime模块有哪些(Python3.5内置模块之time与datetime模块用法实例分析)
- python接口自动化接口依赖(python接口自动化十六--参数关联接口后传详解)
- python详细讲解类方法的使用(浅谈python标准库--functools.partial)
- python turtle简易绘图(详解Python使用Plotly绘图工具,绘制甘特图)
- python多线程超时设置(解决python线程卡死的问题)
- pythonpulp怎么使用(pyhanlp安装介绍和简单应用)
- python起源详解(Python发展简史 Python来历)
- python与php比较(浅谈php调用python文件)
- python默认缩进设置(不归路系列:Python入门之旅-一定要注意缩进!!!推荐)
- python3常用内建函数(Python3中函数参数传递方式实例详解)
- python字符串分析总结(Python 存储字符串时节省空间的方法)
- python和java的共同语法(Python和Java的语法对比分析语法简洁上python的确完美胜出)
- 阴生植物为什么不怕照不到阳光(阴生植物为什么不怕照不到阳光)
- 阴生环境 耐阴地被植物,你知道哪些(阴生环境耐阴地被植物)
- 常见的喜阴植物有哪些 养室内盆栽就在这里选(常见的喜阴植物有哪些)
- 这8种耐阴植物,营造阴生植物花境,也是一个不错的选择(营造阴生植物花境)
- 览邦G08 Plus SMART WATCH 测评⑱ 全独立这才是智能手表该有的样子(览邦G08PlusSMART)
- 荣耀手表 GS 3 真机亮相 不支持无线充电(荣耀手表GS3)
热门推荐
- 云服务器性能怎么判断(云服务器的负载能力怎么样)
- mysqlexplain解析(Mysql explain用法与结果深入分析)
- js如何操作json字符串
- SQL Server中找出执行时间过长的作业
- mysql实现数据的备份的命令(Windows下MySQL定时备份脚本的实现)
- python与php比较(浅谈php调用python文件)
- php数据库怎么获得表单(php如何把表单内容提交到数据库)
- sqlserver备份数据库语句(SQL SERVER 数据库备份的三种策略及语句)
- 云服务器是什么到底有什么用(云服务器有什么用)
- sqlserver 存储过程参数类型(详解SQL Server表和索引存储结构)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9