2.3、数据解析—bs4

一、语法

# pip install beautifulsoup4

from bs4 import BeautifulSoup

html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>

<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>

<p class="story">...</p>
"""

# 1.转类型
# 默认bs4会 调用你系统中lxml的解析库 警告提示
# 主动设置 bs4的解析库
soup = BeautifulSoup(html_doc, 'lxml')

# 2.格式化输出 补全
result = soup.prettify()

print(result)

1、四大对象

点语法

from bs4 import BeautifulSoup

html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="story"><!--...--></p>
<p class="title"><b>The Dormouse's story</b></p>


<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>


"""

# 1.转类型  bs4.BeautifulSoup
soup = BeautifulSoup(html_doc, 'lxml')
print(type(soup))


# 2. 解析数据
#  点语法,通过 . 来取标签,一般只能取到第一个标签


# 取标签 soup.a
# (1)取标签对象  bs4.element.Tag'
result = soup.head
print(type(result))


# 取文本 soup.a.string
#(2)注释内容对象  bs4.element.Comment
# p标签为注释
result = soup.p.string
print(type(result))

# (3)Navigablestring内容对象  bs4.element.NavigableString
result = soup.a.string
print(type(result))


# 取属性(url) soup.a['href']
result = soup.a['href']
print(type(result))

'''
<class 'bs4.BeautifulSoup'>
<class 'bs4.element.Tag'>
<class 'bs4.element.Comment'>
<class 'bs4.element.NavigableString'>
<class 'str'>
'''

2、使用方法

find

# pip install beautifulsoup4

from bs4 import BeautifulSoup

html_doc = """
<html><head>
<title id="one">The Dormouse's story</title>
</head>
<body>
<p class="story"><!--...--></p>
<p class="title">
    p标签的内容
    <b>The Dormouse's story</b>
</p>

<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>


"""




# 1.转类型 bs4.BeautifulSoup'
soup = BeautifulSoup(html_doc, 'lxml')

# 2.通用解析方法

#(1)find方法
# 返回符合查询条件的 第一个标签对象
# find(name=None, attrs={}, recursive=True, text=None, **kwargs)
# 返回标签对象
result = soup.find(name="p") #输出第一个p标签
result = soup.find(attrs={"class": "title"}) #输出class属性 class=tille的标签
result = soup.find(text="Tillie") #输出text属性 text=Tillie的文本内容
result = soup.find(
    name='p',
    attrs={"class": "story"},
)

#(2)find_all方法
# find_all(name=None, attrs={}, recursive=True, text=None, limit=None, **kwargs)
# 返回的是list(标签对象)
result = soup.find_all('a') # 输出全部a标签 list
result = soup.find_all('a')[0] # 输出第一个a标签 标签对象
result = soup.find_all("a", limit=2) #输出两个a标签 list
result = soup.find_all(attrs={"class": "sister"})

#(3)select_one方法
# css选择器
# select_one(selector)
# 返回标签对象
result = soup.select_one('.sister')

#(4)select方法
# css选择器
# select(selector, _candidate_generator=None, limit=None)
# 返回的是list(标签对象)
result = soup.select('title')  # 标签选择器 返回title标签
result = soup.select('.title') # 类选择器 返回属性=title的标签
result = soup.select('title,.title')  # 返回两个标签
result = soup.select('#one')  # id选择器 返回id属性 id=one的标签  
result = soup.select('head title') # 后代选择器  返回head下的title标签
result = soup.select('a[id="link3"]') # 属性选择器  返回a标签中id=link3的a标签

#(5) .get_text()方法
# 返回标签包裹的内容---list
result = soup.select('.title')[0].get_text()


#(6) .get('href')方法
# 返回标签的属性
result = soup.select('#link1')[0].get('href')
print(result)

 

 

二、案例

import requests
from bs4 import BeautifulSoup
from lxml import etree
import json


class BtcSpider(object):
    def __init__(self):
        self.url = 'http://8btc.com/forum-61-{}.html'
        self.headers = {
            "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36"}

        # 保存列表页的数据
        self.data_list = []

        self.data_detail = []

    # 1.发请求
    def get_response(self, url):
        response = requests.get(url, headers=self.headers)
        data = response.content
        return data

    # 2.解析数据list
    def parse_list_data(self, data):

        # 1.转类型
        soup = BeautifulSoup(data, 'lxml')
        # 2.解析内容 取出 所有的类选择器的 A
        title_list = soup.select('.xst')
        for title in title_list:
            list_dict_data = {}
            list_dict_data['title'] = title.get_text()
            list_dict_data['detail_url'] = title.get('href')
            self.data_list.append(list_dict_data)

    # 3.解析数据详情页
    def parse_detail_data(self, data):
        html_data = BeautifulSoup(data, 'lxml')

        # 取出问题--list[1][0]
        question = html_data.select('#thread_subject')[0].get_text()
        print(question)
        answer_list = html_data.select('.t_f')
        for answer in answer_list:
            answer_list = []
            answer_list.append(answer.get_text())

        detail_data = {
            "question": question,
            "answer": answer_list
        }

        self.data_detail.append(detail_data)

    # 3.保存数据
    def save_data(self, data, file_path):
        data_str = json.dumps(data)
        with open(file_path, 'w') as f:
            f.write(data_str)

    def start(self):
        # 列表页的请求
        for i in range(1, 2):
            url = self.url.format(1)
            data = self.get_response(url)
            self.parse_list_data(data)
        self.save_data(self.data_list, "04list.json")

        # 发送详情页的请求
        for data in self.data_list:
            detail_url = data['detail_url']
            detail_data = self.get_response(detail_url)

            # 解析详情页的数据
            self.parse_detail_data(detail_data)

        self.save_data(self.data_detail, 'detail.json')


BtcSpider().start()

"""
html_data = etree.HTML(data)

        result_list = html_data.xpath('//div[contains(@id,"stickthread")]')
        result_list = html_data.xpath('//head/following-sibling::*[1]')
        print(len(result_list))
        print(result_list)
"""

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值