我是靠谱客的博主 辛勤故事,最近开发中收集的这篇文章主要介绍Python 京东爬取案例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一个爬虫案例,爬取的一个京东网页;

import re          #调用正则表达式模块
import urllib.request   #调用urllib.request模块
def craw(url,page):    #定义函数
    html1=urllib.request.urlopen(url).read()  #读取对应网页的全部代码
    html1=str(html1)
    pat1='<ul class="gl-warp clearfix">.+? id="J_bottomPage">'   #正则表达式1,
    result1=re.compile(pat1).findall(html1)   #把读取的源码按正则表达式1过滤,将中间的商品列表部分留下,其他过滤掉
    result1=result1[0]   #提取的目标图片链接放在一个列表中
    pat2='<img width="220" height="220" data-img="1" data-lazy-img="//(.+?.jpg)">'   #正则表达式2
    imagelist=re.compile(pat2).findall(result1)  #第二次过滤,提取一个页面中所有想要爬取的图片链接

    x=1

    for imageurl in imagelist:
        imagename="e:/爬虫实验/"+str(page) +str(x)+".jpg"
        imageurl="http://"+imageurl
        try:
            urllib.request.urlretrieve(imageurl,filename=imagename)
        except urllib.error.URLerror as e:
            if hasattr(e,'code'):   #hasattr判断对象中是否存在name属性,当然对于python的对象而言,属性包含变量和方法;有则返回True,没有则返回False
                x+=1
            if hasattr(e,'reason'):
                x+=1
        x+=1
for i in range(1,20):
    url='https://list.jd.com/list.html?cat=670%2C671%2C672&go=0'+str(i)
    craw(url,i)

最后

以上就是辛勤故事为你收集整理的Python 京东爬取案例的全部内容,希望文章能够帮你解决Python 京东爬取案例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部