• 爬取北京新发地当天货物信息并展示十五天价格变化(三)---获取物品十五天内的价格


    1.网页请求一下内容

    在这里插入图片描述

    通过抓包我们发现一共七个参数
    limit: 20                                           # 一页多少数据
    current: 1                                         #第几页
    pubDateStartTime: 2023/09/12       # 开始时间
    pubDateEndTime: 2023/09/27          #结束时间
    prodPcatid: 
    prodCatid: 
    prodName: 大白菜                           #名称
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    2.通过爬虫进行请求

    首先我们获取十五天里这个货物一共有多少件

    #name是由商品名-规格-产地组合而成
    def xlx(name):                                  #用来获取名字为name的商品十五天内该货物共有多少条数据
        #name='白虾(精品)-21到24头并且活-'
        data = {
            'limit': '1',
            'current': '1',
            'pubDateStartTime': f'{s15}',#自定义的时间
            'pubDateEndTime': f'{end}',#自定义的时间
            'prodPcatid': '',
            'prodCatid': '',
            'prodName': name.split('-')[0],
        }
        count=requests.post(url, data=data).json()['count']
        p(name,count)#将名称和数量传入p函数
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    3.获取商品十五天详细数据并绘制折线图

    def p(name,count):
        data = {
            'limit': f'{count}',
            'current': '1',
            'pubDateStartTime': f'{s15}',
            'pubDateEndTime': f'{end}',
            'prodPcatid': '',
            'prodCatid': '',
            'prodName': '',
        }
        data['prodName']=name.split('-')[0]
        res=requests.post(url='http://www.xinfadi.com.cn/getPriceData.html',data=data).json()
        class_=res['list'][0]['prodCat']
        res=res['list']
        pricelow=[]
        pricemax=[]
        time_list=[]
        for i in res:
            if i['prodName']==name.split('-')[0]:
                #sg=i['specInfo']
                s = i['specInfo'].replace('<', '小于')#对字符串进行处理替换特殊字符
                s = s.replace('>', '大于')
                s = s.replace('/', '并且')
                s = s.replace('-', '到')
                s = s.replace('\\', '或者')
                if s==name.split('-')[1]:
    #画图
                    if i['place']==name.split('-')[2]:
                        pricemax.append(i['highPrice'])
                        pricelow.append(i['lowPrice'])
                        n=str(i['pubDate']).split(' ')[0].split('-')[1:]
                        time_list.append(n[0]+'.'+n[1])
        pricelow.reverse()
        pricemax.reverse()
        time_list.reverse()
        print(name)
    
        plt.figure(figsize=(20, 10), dpi=100)
        plt.plot(time_list, pricelow)
        plt.savefig(fr'./类别/{class_}/价格趋势图/{name}.jpg')
        plt.close()
        with open(f'./类别/{class_}/价格文档/{name}.txt', 'w') as fp:
            fp.write(' '.join(time_list)+'\n'+' '.join(pricemax)+'\n'+' '.join(pricelow))
        time.sleep(1)
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45

    4.项目详细代码

    import matplotlib
    import requests
    import datetime
    from multiprocessing.dummy import Pool
    from matplotlib import pyplot as plt
    import os
    import shutil
    import time
    matplotlib.use('agg')
    
    
    
    def RemoveDir(filepath):    #用来删除文件夹中的所有内容
        '''
        如果文件夹不存在就创建,如果文件存在就清空!
    
        '''
        if not os.path.exists(filepath):
            os.mkdir(filepath)
        else:
            shutil.rmtree(filepath)
            os.mkdir(filepath)
    
    
    
    
    
    def count(url,data):
        res = requests.post(url, data=data)
        num = res.json()['count']
        return num
    
    def xlx(name):                                  #用来获取名字为name的商品十五天内该货物共有多少条数据
        #name='白虾(精品)-21到24头并且活-'
        data = {
            'limit': '1',
            'current': '1',
            'pubDateStartTime': f'{s15}',
            'pubDateEndTime': f'{end}',
            'prodPcatid': '',
            'prodCatid': '',
            'prodName': name.split('-')[0],
        }
        count=requests.post(url, data=data).json()['count']
        p(name,count)
        #print(name)
        #print(count)#将名称和数据的数量传给p函数
    
    
    
    
    def p(name,count):
        data = {
            'limit': f'{count}',
            'current': '1',
            'pubDateStartTime': f'{s15}',
            'pubDateEndTime': f'{end}',
            'prodPcatid': '',
            'prodCatid': '',
            'prodName': '',
        }
        data['prodName']=name.split('-')[0]
        res=requests.post(url='http://www.xinfadi.com.cn/getPriceData.html',data=data).json()
        class_=res['list'][0]['prodCat']
        res=res['list']
        pricelow=[]
        pricemax=[]
        time_list=[]
        for i in res:
            if i['prodName']==name.split('-')[0]:
                #sg=i['specInfo']
                s = i['specInfo'].replace('<', '小于')
                s = s.replace('>', '大于')
                s = s.replace('/', '并且')
                s = s.replace('-', '到')
                s = s.replace('\\', '或者')
                if s==name.split('-')[1]:
    
                    if i['place']==name.split('-')[2]:
                        pricemax.append(i['highPrice'])
                        pricelow.append(i['lowPrice'])
                        n=str(i['pubDate']).split(' ')[0].split('-')[1:]
                        time_list.append(n[0]+'.'+n[1])
        pricelow.reverse()
        pricemax.reverse()
        time_list.reverse()
        print(name)
    
        plt.figure(figsize=(20, 10), dpi=100)
        plt.plot(time_list, pricelow)
        plt.savefig(fr'./类别/{class_}/价格趋势图/{name}.jpg')
        plt.close()
        with open(f'./类别/{class_}/价格文档/{name}.txt', 'w') as fp:
            fp.write(' '.join(time_list)+'\n'+' '.join(pricemax)+'\n'+' '.join(pricelow))
        time.sleep(1)
    
    
    
    
    def filetxt(filename):
        namelist=[]
        file = open(filename, "r", encoding="GBK")
        file = file.readlines()
        for line in file:
            line = line.strip('\n')
            namelist.append(line)
        return namelist
    
    
    
    class_list=['水产','水果','粮油','肉禽蛋','蔬菜','调料','豆制品'] #所有的主类别
    for i in class_list:                                        #重置类别文件
        with open(f'./类别/{i}/今日类别.txt', 'w') as fp:
            fp.write('')
        RemoveDir(f'./类别/{i}/价格文档')
        RemoveDir(f'./类别/{i}/价格趋势图')
    
    
    url='http://www.xinfadi.com.cn/getPriceData.html'           #主页面url
    
    today = datetime.date.today()                              #获取当前日期
    yesterday = str(today - datetime.timedelta(days=1))  #获取今天往前十五天的日期 吧
    s15=str(today - datetime.timedelta(days=15))
    today=str(today)
    enddata_list=today.split('-')
    start_list=yesterday.split('-') #去掉日期后面的时分秒
    s15=s15.split('-')
    end=enddata_list[0]+'/'+enddata_list[1]+'/'+enddata_list[2]#将日期格式转换为我们data需要的格式
    start=start_list[0]+'/'+start_list[1]+'/'+start_list[2]
    s15=s15[0]+'/'+s15[1]+'/'+s15[2]
    data={
        'limit': '1',
        'current': '1',
        'pubDateStartTime': start,
        'pubDateEndTime': end,
        'prodPcatid':'' ,
        'prodCatid': '',
        'prodName':'' ,
        }                                                            #获取当天所有交易货物的data
    res = requests.post(url, data=data)                              #发送post请求
                                                                   #提取出共有多少种货物
    data['limit']=res.json()['count']                               #将data中的limit设置为货物总数就可以一次请求全部获取
    res=requests.post(url,data=data).json()                            #获取到当天所有货物的产地型号等详细数据
    
    data=res['list']
    
    for i in data:                                                #循环便利每一种货物
        prodCat=i['prodCat']#提取出当前货物的类别
        s=i['specInfo'].replace('<','小于')
        s=s.replace('>','大于')
        s=s.replace('/','并且')
        s = s.replace('-', '到')
        s = s.replace('\\', '或者')
        name=i['prodName']+'-'+s+'-'+i['place']          #将货物的名字定为    物品名-型号-产地
        with open(f'./类别/{prodCat}/今日类别.txt', 'a+') as fp:       #按照类别将其保存到所属的主类文件夹中
            fp.write(name+'\n')                                      #写入数据每个数据一行
    
    
    
    
    
    
    
    
    for i in class_list:                                        #循环所有主类取出其中所有的货物名称
        filename=f'./类别/{i}/今日类别.txt'
        name_list=filetxt(filename)
        if name_list!=[]:
            #判断是否为空
            pool = Pool(3)                                     #开启线程池
            # 定义循环数
            origin_num = [x for x in name_list]                #每一个货物开启一个线程
            # 利用map让线程池中的所有线程‘同时’执行calc_power2函数
            pool.map(xlx, origin_num)
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
  • 相关阅读:
    酷开系统 酷开科技,将家庭娱乐推向新高潮
    k8s快速入门教程-----7 数据管理
    【数据分享】2005-2022年全国民航机场客货吞吐量和起降架次数据
    springboot配置文件加载顺序
    360vr党建线上主题展立体化呈现企业的文化理念和品牌形象
    _c++多态_轻松入门
    [Druid-1.2.11源码系列]-7-mysql-connector-java驱动包内部的创建数据库连接对象的过程
    代理IP与Socks5代理在跨界电商、爬虫、游戏和网络安全中的应用
    [李宏毅老师深度学习视频]深度学习全连接层+反向传播机制【手写笔记】
    centos-apache-简易搭建静态网页服务器-总结
  • 原文地址:https://blog.csdn.net/qq_62975494/article/details/133339997