#encoding=utf8
import requests
import re
# from lxml import etree
from bs4 import BeautifulSoup
#设置用户标识
header = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36'
}
url='https://www.1905.com/vod/top/lst/'
# 发送请求
html = requests.get(url,headers=header)
# print(html.text)
# 处理数据
# 1.创建BeautifulSoup解析工具,选择解析器进行解析
bhtml=BeautifulSoup(html.text,'lxml')
# 2.通过css选择器搜索对应节点
result= bhtml.select('dt[class="li03 oh"] a')
for x in result:
print(x.get_text())
bs4解析数据
转载
bs4解析数据
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:Python对于文件os操作
下一篇:selenium安装
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
代码+案例,实战解析BeautifulSoup4
本文将介绍BeautifulSoup4的基础知识,并通过实际代码示例进行演示。
HTML html 反爬虫 BeautifulSoup4 -
数据解析之BS4——实战
目录一、bs4数据解析原理1、环境安装2、实例化一个BeautifulSoup对象,并且将页面源码数据加载到该对象中①导包②对象实例化2
python 爬虫 数据 xml 实例化 -
Python页面解析和数据提取【bs4】
bs4的常见用法
python bs4 爬虫