Python爬虫学习日志(4)

Beautiful Soup库

B和S要大写

1.作用

  • Beautiful Soup库是解析、遍历、维护“标签树”的功能。
    标签树:
<html>
	<body>
		<p class="title">...</p>
	</body>
</html>

2.BeautifulSoup类

  • HTML页面<——>标签树<——>BeautifulSoup类
from bs4 import BeautifulSoup
soup = BeautifulSoup("<html>data</html>", "html.parser") # "html.parser"是HTML解析器
soup2 = BeautifulSoup(open("D://demo.html"), "html.parser")
  • BeautifulSoup类对应一个HTML/XML文档的全部内容
    在这里插入图片描述

3.基本元素

在这里插入图片描述

  • NavigableString可以跨越多个标签层次

4.库的理解

在这里插入图片描述
在这里插入图片描述

from bs4 import BeautifulSoup
newsoup = BeautifulSoup("<b><!--This is a comment--></b><p>This is not a comment</p>", "html.parser")
newsoup.b.string
'This is a comment'
type(newsoup.b.string)
<class 'bs4.element.Comment'>
newsoup.p.string

  • <!- -> 是注释标签,解析时会自动忽略,只提取文本。为了区分b标签p标签中的文本内容,可以通过字符类型进行区分。

5.基于bs4库的HTML内容遍历方法

在这里插入图片描述

  1. 标签树的下行遍历
    在这里插入图片描述
  2. 标签树的上行遍历
    在这里插入图片描述
  3. 标签树的平行遍历
    在这里插入图片描述

6.基于bs4库的HTML格式输出

  • 对HTML格式输出进行美化
import requests
r = requests.get("http://python123.io/ws/demo.html")
demo = r.text
>>>demo
'<html><head><title>This is a python demo page</title></head>\r\n<body>\r\n<p class="title"><b>The demo python introduces several python courses.</b></p>\r\n<p class="course">Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:\r\n<a href="http://www.icourse163.org/course/BIT-268001" class="py1" id="link1">Basic Python</a> and <a href="http://www.icourse163.org/course/BIT-1001870001" class="py2" id="link2">Advanced Python</a>.</p>\r\n</body></html>'
from bs4 import BeautifulSoup
soup = BeautifulSoup(demo, "html.parser")
>>>soup.prettify()
'<html>\n <head>\n  <title>\n   This is a python demo page\n  </title>\n </head>\n <body>\n  <p class="title">\n   <b>\n    The demo python introduces several python courses.\n   </b>\n  </p>\n  <p class="course">\n   Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:\n   <a class="py1" href="http://www.icourse163.org/course/BIT-268001" id="link1">\n    Basic Python\n   </a>\n   and\n   <a class="py2" href="http://www.icourse163.org/course/BIT-1001870001" id="link2">\n    Advanced Python\n   </a>\n   .\n  </p>\n </body>\n</html>'
print(soup.prettify()) #美化,添加回车符
<html>
 <head>
  <title>
   This is a python demo page
  </title>
 </head>
 <body>
  <p class="title">
   <b>
    The demo python introduces several python courses.
   </b>
  </p>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值