最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

pythonBeautifulSoup使用方法详解

来源:动视网 责编:小采 时间:2020-11-27 14:38:57
文档

pythonBeautifulSoup使用方法详解

pythonBeautifulSoup使用方法详解:直接看例子: 代码如下:#!/usr/bin/python# -*- coding: utf-8 -*-from bs4 import BeautifulSouphtml_doc = The Dormouse's storyThe Dormouse's storyOnce upon a time there were three little
推荐度:
导读pythonBeautifulSoup使用方法详解:直接看例子: 代码如下:#!/usr/bin/python# -*- coding: utf-8 -*-from bs4 import BeautifulSouphtml_doc = The Dormouse's storyThe Dormouse's storyOnce upon a time there were three little


直接看例子:

代码如下:


#!/usr/bin/python
# -*- coding: utf-8 -*-
from bs4 import BeautifulSoup
html_doc = """
The Dormouse's story

The Dormouse's story


Once upon a time there were three little sisters; and their names were
Elsie,
Lacie and
Tillie;
and they lived at the bottom of a well.


...


"""
soup = BeautifulSoup(html_doc)
print soup.title
print soup.title.name
print soup.title.string
print soup.p
print soup.a
print soup.find_all('a')
print soup.find(id='link3')
print soup.get_text()

结果为:

代码如下:


The Dormouse's story
title
The Dormouse's story

The Dormouse's story


Elsie
[Elsie, Lacie, Tillie]
Tillie
The Dormouse's story
The Dormouse's story
Once upon a time there were three little sisters; and their names were
Elsie,
Lacie and
Tillie;
and they lived at the bottom of a well.
...

可以看出:soup 就是BeautifulSoup处理格式化后的字符串,soup.title 得到的是title标签,soup.p 得到的是文档中的第一个p标签,要想得到所有标签,得用find_all
函数。find_all 函数返回的是一个序列,可以对它进行循环,依次得到想到的东西.
get_text() 是返回文本,这个对每一个BeautifulSoup处理后的对象得到的标签都是生效的。你可以试试 print soup.p.get_text()
其实是可以获得标签的其他属性的,比如我要获得a标签的href属性的值,可以使用 print soup.a['href'],类似的其他属性,比如class也是可以这么得到的(soup.a['class'])。
特别的,一些特殊的标签,比如head标签,是可以通过soup.head 得到,其实前面也已经说了。
如何获得标签的内容数组?使用contents 属性就可以 比如使用 print soup.head.contents,就获得了head下的所有子孩子,以列表的形式返回结果,
可以使用 [num] 的形式获得 ,获得标签,使用.name 就可以。
获取标签的孩子,也可以使用children,但是不能print soup.head.children 没有返回列表,返回的是 ,
不过使用list可以将其转化为列表。当然可以使用for 语句遍历里面的孩子。
关于string属性,如果超过一个标签的话,那么就会返回None,否则就返回具体的字符串print soup.title.string 就返回了 The Dormouse's story
超过一个标签的话,可以试用strings
向上查找可以用parent函数,如果查找所有的,那么可以使用parents函数
查找下一个兄弟使用next_sibling,查找上一个兄弟节点使用previous_sibling,如果是查找所有的,那么在对应的函数后面加s就可以

如何遍历树?

使用find_all 函数

代码如下:


find_all(name, attrs, recursive, text, limit, **kwargs)

举例说明:

代码如下:


print soup.find_all('title')
print soup.find_all('p','title')
print soup.find_all('a')
print soup.find_all(id="link2")
print soup.find_all(id=True)

返回值为:

代码如下:


[The Dormouse's story]
[

The Dormouse's story

]
[Elsie, Lacie, Tillie]
[Lacie]
[Elsie, Lacie, Tillie]

通过css查找,直接上例子:

代码如下:


print soup.find_all("a", class_="sister")
print soup.select("p.title")

通过属性进行查找

代码如下:


print soup.find_all("a", attrs={"class": "sister"})

通过文本进行查找

代码如下:


print soup.find_all(text="Elsie")
print soup.find_all(text=["Tillie", "Elsie", "Lacie"])

限制结果个数

代码如下:


print soup.find_all("a", limit=2)

结果为:

代码如下:


[Elsie, Lacie, Tillie]
[

The Dormouse's story

]
[Elsie, Lacie, Tillie]
[u'Elsie']
[u'Elsie', u'Lacie', u'Tillie']
[Elsie, Lacie]

总之,通过这些函数可以查找到想要的东西。

文档

pythonBeautifulSoup使用方法详解

pythonBeautifulSoup使用方法详解:直接看例子: 代码如下:#!/usr/bin/python# -*- coding: utf-8 -*-from bs4 import BeautifulSouphtml_doc = The Dormouse's storyThe Dormouse's storyOnce upon a time there were three little
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top