python python bs4模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python python bs4模块相关的知识,希望对你有一定的参考价值。

#coding:utf-8 
import requests
from bs4 import BeautifulSoup

res = requests.get(url)
html = res.text
# 初始化,指定解析器,默认是html.parser
soup = BeautifulSoup(html,"html.parser")

# find_all / find 
soup.find_all("p", "title")                     # [<p class="title"><b>The Dormouse's story</b></p>]
css_soup.find_all("p", class_="body strikeout") # [<p class="body strikeout"></p>]
data_soup.find_all(attrs={"data-foo": "value"}) # [<div data-foo="value">foo!</div>]

#---text 参数---
# 通过 text 参数可以搜搜文档中的字符串内容.与 name 参数的可选值一样, text 参数接受 字符串 , 正则表达式 , 列表, True .

# ---limit 参数---
# find_all() 方法返回全部的搜索结构,如果文档树很大那么搜索会很慢.如果我们不需要全部结果,
# 可以使用 limit 参数限制返回结果的数量.效果与SQL中的limit关键字类似,当搜索到的结果数量达到 limit 的限制时,就停止搜索返回结果.

# ---recursive参数---
# 如果只想搜索tag的直接子节点,可以使用参数 recursive=False 

以上是关于python python bs4模块的主要内容,如果未能解决你的问题,请参考以下文章

python使用bs4模块 去除html标签字符串方法

ImportError:没有名为'bs4'的模块与virtualenv python3

ImportError:Mac 上没有名为 bs4 的模块

python 复习—并发编程——进程数据共享进程锁进程池requests模块和bs4(beautifulsoup)模块

虚拟环境中没有名为“bs4”的模块

python bs4 BeautifulSoup