基本信息
源码名称:爬虫京东
源码大小:2.14KB
文件格式:.py
开发语言:Python
更新时间:2021-04-03
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

爬取京东商品的好差评

for j in range(len(jsonResult['comments'])):
    res1 = jsonResult['comments'][j]['content']
    res11 = res1.replace('\n', ' ')
    res2 = jsonResult['comments'][j]['score']
    theContent.append(res11)
    theScore.append(res2) # match1 = re.compile('"content":"(.*?)","creationTime"') # match2 = re.compile('"score":\d,"imageStatus"')  # theContent.extend(match1.findall(data)) # theScore.extend(match2.findall(data))  print(''   str(i)   '页评论已爬取完毕')