Python的爬虫包Beautiful Soup中用正则表达式来搜索

作者:crifan 时间:2022-12-29 07:15:34 

Beautiful Soup使用时,一般可以通过指定对应的name和attrs去搜索,特定的名字和属性,以找到所需要的部分的html代码。

但是,有时候,会遇到,对于要处理的内容中,其name或attr的值,有多种可能,尤其是符合某一规律,此时,就无法写成固定的值了。

所以,就可以借助正则表达式来解决此问题。
比如,


<div class="icon_col">
   <h1 class="h1user">crifan</h1>
</div>

对应的BeautifulSoup代码如下:


h1userSoup = soup.find(name="h1", attrs={"class":"h1user"});

而如果html是这种:


<div class="icon_col">
   <h1 class="h1user">crifan</h1>
   <h1 class="h1user test1">crifan 123</h1>
   <h1 class="h1user test2">crifan 456</h1>
</div>

那么想要一次性地找到所有的,符合条件的h1的部分的代码,则之前的写法,就只能找到单个的class="h1user"的部分,剩下的两个


class="h1user test1"


class="h1user test2"

就找不到了。

那么,此时,就可以用到,BeautifulSoup中非常好用的,非常强大的功能:

attrs中支持正则表达式的写法

了。

就可以写成:


h1userSoupList = soup.findAll(name="h1", attrs={"class":re.compile(r"h1user(\s\w+)?")});

就可以一次性地,找到:


class="h1user"

class="h1user test1"

class="h1user test2"

了。


<div aria-lable="xxx">

之类的标签,xxx的内容未知(可变)的前提下

想要查找到对应的此div标签,之前不知道如何实现。
如果写成:


sopu.findAll("div", attrs={"aria-lable": "xxx"});

则xxx必须写出来,如果不写出来属性值,也就没法用上attrs了,就没法实现此处查找特性属性值的标签了。
所以针对:


<div aria-label="5星, 747 份评分" class="rating" role="img" tabindex="-1">
<div>
<span class="rating-star">
</span>
<span class="rating-star">
</span>
<span class="rating-star">
</span>
<span class="rating-star">
</span>
<span class="rating-star">
</span>
</div>
<span class="rating-count">
747 份评分
</span>
</div>

可以通过:


soup.findAll("div", attrs={"aria-lable": True});

去查找到属性包含aria-lable的div标签的。

所以,对于上面的,之前不知道如何处理:

用BeautifulSoup查找未知属性值,但是已知属性的名字的标签

则此处,就可以针对:


<div aria-lable="xxx">

去用:


sopu.findAll("div", attrs={"aria-lable": True});

就可以查找到对应的包含属性aria-lable的div标签了。

标签:Python,BeautifulSoup
0
投稿

猜你喜欢

  • python爬取各类文档方法归类汇总

    2022-02-22 05:45:47
  • go语言里包的用法实例

    2024-02-02 10:24:33
  • python爬虫正则表达式之处理换行符

    2021-02-20 05:56:02
  • MySQL与PHP的基础与应用专题之自连接

    2023-11-14 08:52:37
  • 数据结构-树(三):多路搜索树B树、B+树

    2024-01-27 01:21:43
  • Django实现内容缓存实例方法

    2021-04-19 20:47:41
  • MySQL数据库的触发器的使用

    2024-01-19 07:17:37
  • Django中Middleware中的函数详解

    2023-08-30 06:58:30
  • python从gbff文件中直接提取cds序列

    2023-05-29 16:10:35
  • 认识MySQL数据库对服务器端光标的限制

    2009-03-25 17:35:00
  • Django框架模板介绍

    2021-07-05 07:34:18
  • python实现决策树C4.5算法详解(在ID3基础上改进)

    2022-05-06 08:01:57
  • Python中利用ItsDangerous快捷实现数据加密

    2022-06-09 23:24:41
  • 轻松实现php文件上传功能

    2023-11-17 04:34:12
  • Python登录系统界面实现详解

    2021-02-11 19:24:04
  • 30秒学会30个超实用Python代码片段【收藏版】

    2021-08-04 17:13:32
  • SQL Server 数据库备份和还原认识和总结(二)

    2012-10-07 10:52:52
  • php文件操作小结(删除指定文件/获取文件夹下的文件名/读取文件夹下图片名)

    2024-05-22 10:07:10
  • 解决python彩色螺旋线绘制引发的问题

    2023-06-30 12:49:12
  • 通俗解释JavaScript正则表达式快速记忆

    2024-04-22 22:24:04
  • asp之家 网络编程 m.aspxhome.com