概述
先码为敬
import requests
import re
def getHTMLText(url)://这里已经入门python爬虫的应该都知道了,这就是个爬取阿里商品全部信息的函数
try:
r=requests.get(url,timeout=30)
r.raise_for_status()
r.encoding=r.apparent_encoding
return r.text
except:
return 'error'
def parsePage(ilt,html)://这个函数就是利用正则表达式从获取到的信息里面筛选需要的信息
try:
plt=re.findall(r'"strPriceMoney":"[d.]*"',html)//这里利用正则表达式进行信息匹配
tlt=re.findall(r'"title":".*?"',html)
for i in range(len(plt)):
price=eval(plt[i].split(':')[1])
title1=eval(tlt[i].split(':')[1])
title=re.sub(r'<.*?>','',title1)\这一段是利用正则表达式去除获取字符串里的标签信息
ilt.append([price,title])
except:
print('error')
def printGoodsList(ilt)://这个函数就是将获取需要的信息进行打印输出
tplt='{:4}t{:8}t{:16}'
print(tplt.format('序号','价格','商品名称'))
count=0
for i in ilt:
count+=1
print(tplt.format(count,i[0],i[1]))
def main()://主函数进行调用控制其他函数功能
goods='电脑'
start_url='https://p4psearch.1688.com/p4p114/p4psearch/offer.htm?spm=a2609.11209760.it2i6j8a.6.50832de1NZAXIF&cosite=qqdaohang&keywords='+goods
infoList=[]
try:
url=start_url
html=getHTMLText(url)
parsePage(infoList,html)
printGoodsList(infoList)
except:
print('error')
main()
这段代码本来是在mooc上学习到的,但当时是用来爬取淘宝信息的,但现在淘宝要登录,我怕被封号^_^,就自己修改了一些内容从而来爬取阿里的商品信息
最后
以上就是重要海燕为你收集整理的Python简单爬取阿里巴巴商品信息的全部内容,希望文章能够帮你解决Python简单爬取阿里巴巴商品信息所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复