【爬虫】四、数据解析之bs4

文章介绍了如何利用Python的BeautifulSoup库(bs4)解析HTML页面,通过find和find_all方法查找特定标签和属性,提取所需数据。示例包括从网页中抓取表格数据并保存到csv文件,以及爬取下载壁纸的流程,涉及requests库的使用和图片的HTTP请求下载。
摘要由CSDN通过智能技术生成

bs4解析

通过html标签获取到内容
安装bs4: pip install bs4

语法

1.把页面源代码交给BeautifulSoup进行处理,生产bs对象。
page = BeautifulSoup(resp.text,“html.parser”) #指定html解析器
2.从bs对象中查找数据
find(标签,属性=值)
find_all(标签,属性=值)

例子:

import requests
import re
import csv
from bs4 import BeautifulSoup

url = "官网"
resp = requests.get(url)
resp.encoding = resp.apparent_encoding

#解析数据
# 1.把页面源代码交给BeautifulSoup处理,生产bs对象
page = BeautifulSoup(resp.text,"html.parser")   #html.parser表示使用HTML解析器
resp.close()

#2.从bs对象中找数据
# find(标签,属性=值),即只找第一个
# find_all(标签,属性=值)
# table = page.find("table",class_="kj_tablelist01")  #class是python的关键字,冲突了,所以需要class_
table = page.find("table",attrs={"class":"kj_tablelist01"})  #class是python的关键字,冲突了,可以用字典存

f = open("balls.csv",mode='w',encoding='utf-8',newline="")
csvwriter = csv.writer(f)

trs = table.find_all("tr")[2:]  #切片
for tr in trs:
    tds = tr.find_all("td")
    ball = []
    for td in tds:
        td = re.sub("[a-zA-Z()'; \r]", '', td.text).replace("\n","").replace("\t","")
        ball.append(td)
        scripts = td.find_all("script")
        # print(td)
        for script in scripts:
            script = re.sub("[a-zA-Z()'; \r]",'',script.text).replace("\n","").replace("\t","")
            ball.append(script)
            # print(script)
    while '' in ball:
        ball.remove('')
    csvwriter.writerow(ball)

f.close()

例子:爬取下载壁纸

import time
import requests
from bs4 import BeautifulSoup

url = "壁纸网页地址"
resp = requests.get(url)
resp.encoding = resp.apparent_encoding
domain = "官网地址"
#解析数据
# 1.把页面源代码交给BeautifulSoup处理,生产bs对象
page = BeautifulSoup(resp.text,"html.parser")   #html.parser表示使用HTML解析器
resp.close()

aList = page.find_all("a",attrs={"class":"imgTitle"})
for a in aList:
    href = a.get("href")
    respChild = requests.get(domain+href)
    respChild.encoding = "utf-8"
    pageChild = BeautifulSoup(respChild.text,"html.parser")
    respChild.close()
    imgList = pageChild.find_all("img",attrs={"class":"lazy"})
    for img in imgList:
        src = img.get("src")
        src = "http:"+src
        imgName = src.split("/")[-1]  #用/进行分片,取最后一段

        # 下载图片
        imgResp = requests.get(src)
        with open("img/"+imgName,mode="wb") as f:
            f.write(imgResp.content)#取字节,写入文件
        f.close()
    time.sleep(2)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值