简单爬取阿里巴巴商品信息

发布时间:2023-10-14 18:30

先码为敬
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上学习到的,但当时是用来爬取淘宝信息的,但现在淘宝要登录,我怕被封号^_^,就自己修改了一些内容从而来爬取阿里的商品信息
    

 

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号