爬虫---解析内容(BeautifulSoup4):
程序员文章站
2022-07-13 12:30:44
...
解析内容(BeautifulSoup4):
创建Beautiful Soup对象:
# 创建 Beautiful Soup 对象
soup = BeautifulSoup(html)
# 打开本地 HTML 文件的方式来创建对象
# soup = BeautifulSoup(open('index.html'))
搜索文档树:
1.find_all() :
find_all(name, attrs, recursive, text, **kwargs)
1.参数name:
#直接输入字符串,返回是a标签,一个列表
print(soup.find_all('a'))
# 打印出:[<a class="sise</a>]
#输入一个列表,返回a或者b标签,一个列表
soup.find_all(["a", "b"])
# 打印出:[<b>The Dormouse's story</b>,
# <a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>,]
#传入正则,返回以b开头的标签,一个列表
import re
soup.find_all(re.compile("^b")):
2.参数keyword:
#返回id=link2的标签,一个列表
soup.find_all(id='link2')
# [<a class="sister" href="http://example.com/lacie" id="link2">Lacie</a>]
3.参数text:
#搜索文档中字符串内容,返回一个列表
soup.find_all(text="Elsie")
# [u'Elsie']
soup.find_all(text=["Tillie", "Elsie", "Lacie"])
# [u'Elsie', u'Lacie', u'Tillie']
find_all,返回值是一个列表
2.find():
用法和find_all()一致,就是返回第一个
3.select()
返回值是一个列表,
里面参数写css选择器
上一篇: Java爬虫-简单解析网页内容