【爬虫实战】利用代理爬取Temu电商数据




import requests
from lxml import etree
import csv
import time
 
# 设置请求头
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36',
}
 
# 设置CSV文件头
csv_headers = ['商品名称', '商品价格', '商品评分', '销售商信息', '商品链接']
 
# 设置代理服务器
proxy = {'http': 'http://120.77.138.138:80', 'https': 'https://120.77.138.138:80'}
 
# 设置请求超时时间
timeout = 10
 
# 设置请求失败的重试次数
max_retries = 5
 
# 初始化请求计数器
retries_count = 0
 
# 初始化CSV文件
with open('temu_data.csv', 'w', newline='', encoding='utf-8') as csvfile:
    writer = csv.DictWriter(csvfile, fieldnames=csv_headers)
    writer.writeheader()
 
    # 设置爬取页数
    for page in range(1, 11):
        print(f'正在爬取第{page}页数据...')
        url = f'https://www.temu.com/search/?q=%E6%B5%8B%E8%AF%95&sort=rank&page={page}'
 
        # 实施重试机制
        while retries_count < max_retries:
            try:
                response = requests.get(url, headers=headers, proxies=proxy, timeout=timeout)
                response.raise_for_status()  # 检查是否请求成功
                retries_count = 0  # 重置请求计数器
                break
            except requests.exceptions.RequestException as e:
                print(f'请求失败,原因:{e}')
                retries_count += 1
                time.sleep(5)  # 等待5秒后重试
 
        # 解析HTML内容
        tree = etree.HTML(response.text)
        product_items = tree.xpath('//div[@class="product-item"]')
 
        for product_item in product_items:
            name = product_item.xpath('.//h3/a/text()')[0].strip()
            price = product_item.xpath('.//div[@class="product-price"]/span/text()')[0].strip()
            score = product_item.xpath('.//div[@class="product-score"]/text()')[0].strip()
            seller = product_item.xpath('.//div[@class="product-seller"]/text()')[0].strip()
            link = product_item.xpath('.//h3/a/@href')[0].strip()
 
            # 将数据写入CSV文件
            writer.writerow({
                '商品名称': name,
                '商品价格': price,
                '商品评分': score,
                '销售商信息': seller,
                '商品链接': link
            })
 
        print(f'第{page}页数据爬取完成。\n')
        time.sleep(2)  # 为了避免对服务器造成过大压力,设置2秒钟的间隔
 
print('所有页面数据爬取完成。')

这段代码使用了requests库来发送HTTP请求,并使用lxml库来解析HTML内容。同时,使用了CSV库来保存爬取的数据。代码中的重试机制能够处理网络请求失败的情况,并在请求失败时进行重试。最后,代码会在控制台输出爬取的状态信息,并在完成

none
最后修改于:2024年08月13日 09:45

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日