文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python中的Beautiful Soup模块的用法

2023-06-02 06:01

关注

这篇文章主要介绍“Python中的Beautiful Soup模块的用法”,在日常操作中,相信很多人在Python中的Beautiful Soup模块的用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Python中的Beautiful Soup模块的用法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

1.Beautiful Soup模块的介绍

pip install beautifulsoup4pip install html5libpip install lxml

2. Beautiful Soup模块解析HTML文档

假如现在有一段不完整的HTML代码,我们现在要使用Beautiful Soup模块来解析这段HTML代码

data = '''                                         <html><head><title>The Dormouse's story</title></he<body>                                             <p class="title"><b id="title">The Dormouse's story</b></p>   <p class="story">Once upon a time there were three <a href="http://example.com/elsie" class="sister" i<a href="http://example.com/lacie" class="sister" i<a href="http://example.com/tillie" class="sister" and they lived at the bottom of a well.</p>        <p class="story">...</p>                           '''
from bs4 import BeautifulSoup           soup = BeautifulSoup(data,'lxml')

然后通过BeautifulSoup提供的方法就可以拿到HTML的元素、属性、链接、文本等,BeautifulSoup模块可以将不完整的HTML文档,格式化为完整的HTML文档 ,比如我们打印print(soup.prettify())看一下输出什么?

<html> <head>  <title>   The Dormouse's story  </title> </head> <body>  <p class="title">   <b id="title">    The Dormouse's story   </b>  </p>  <p class="story">   Once upon a time there were three   <a a="" and="" at="" bottom="" class="sister" href="http://example.com/elsie" i="" lived="" of="" the="" they="" well.="">    <p class="story">     ...    </p>   </a>  </p> </body></html>
print('title = {}'.format(soup.title))             # 输出:title = <title>The Dormouse's story</title>print('a={}'.format(soup.a))
print('title_name = {}'.format(soup.title.name))# 输出:title_name = titleprint('body_name = {}'.format(soup.body.name))# 输出:body_name = body
print('title_string = {}'.format(soup.title.string))#  输出:title_string = The Dormouse's story
print('title_pareat_name = {}'.format(soup.title.parent))# 输出:title_pareat_name = <head><title>The Dormouse's story</title></head>
print('p = {}'.format(soup.p))# 输出:p = <p class="title"><b>The Dormouse's story</b></p>
print('p_class = {}'.format(soup.p["class"]))# 输出:p_class = ['title']print('a_class = {}'.format(soup.a["class"]))# 输出:a_class = ['sister']
#  获取所有的a标签print('a = {}'.format(soup.find_all('a')))#  获取所有的p标签  print('p = {}'.format(soup.find_all('p')))
print('a_link = {}'.format(soup.find(id='title')))# 输出:a_link = <b id="title">The Dormouse's story</b>

3.BeautifulSoup中的对象

语法:

4.遍历文档

soup = BeautifulSoup(html,"lxml")# 返回一个列表print(soup.p.contents)# 拿到第一个子节点print(soup.p.contents[0])
for tag in soup.p.children:    print(tag)
soup = BeautifulSoup(html,"lxml")for content in soup.strings:    print(repr(content))
soup = BeautifulSoup(html,"lxml")for tag in soup.stripped_strings:    print(repr(tag))

5.查找标签

soup = BeautifulSoup(html,"lxml")print(soup.find_all('a'))print(soup.find_all(['a','p']))print(soup.find_all(re.compile('^a')))
soup = BeautifulSoup(html,"lxml")print(soup.find('a'))

到此,关于“Python中的Beautiful Soup模块的用法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯