爬虫小案例之爬取京东商品链接

本文介绍如何使用Python爬虫技术抓取京东商品列表,通过分析URL变化规律,实现翻页获取更多搜索结果。涉及base_url构建、动态参数传递及HTML解析技术。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

观察URL翻页的变化

爬取页面URL如下

    base_url='https://search.jd.com/Search?keyword='+keyword
    for x in range(1,num+ 1):
        url=base_url+'&page=%d'% x

爬取结果如下:

 

import requests
import re
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36'}
def parse_page(results,text):
    titles_ret = re.findall(r'<div class="p-name.*?>.*?<em>(.*?)</em>.*?</div>', text, flags=re.DOTALL)
    titles=[]
    for title in titles_ret:
        temp = re.sub("<.*?>", "",title)
        titles.append(temp.strip())
    print('title', titles)
    prices = re.findall(r'<div class="p-price">.*?<i>(.*?)</i>.*?</div>', text,flags=re.DOTALL)
    hrefs=re.findall(r'<div class="p-name.*?>.*?<a.*?href="(.*?)".*?>.*?</div>', text, flags=re.DOTALL)
    for value in zip(titles, prices, hrefs):
        title, price,href = value
        results.append([title, price,href])
    return results


def getHTMLText(url):
    '''从网络上获取网页内容'''
    try:
        r = requests.get(url, headers=headers,timeout=40)
        # #如果状态不是200,就会引发HTTPError异常
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ""

def printGoodsList(ilt):
    tplt = "{:4}\t{:8}\t{:40}\t{:60}"
    print(tplt.format("序号", "价格", "链接","商品名称"))
    count = 0
    for g in ilt:
        count = count + 1
        print(tplt.format(count, g[1], g[2],g[0]))

def main():
    keyword ='女装套装'
    base_url='https://search.jd.com/Search?keyword='+keyword
    num=5
    list=[]
    for x in range(1,num+ 1):
        url=base_url+'&page=%d'% x
        print(url)
        text = getHTMLText(url)
        list = parse_page(list,text)
    printGoodsList(list)
if __name__ == '__main__':
    main()

股票爬取

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值