其他分享
首页 > 其他分享> > 爬虫进阶之路——【App系列】:豆果美食App海量数据爬取教学!!!

爬虫进阶之路——【App系列】:豆果美食App海量数据爬取教学!!!

作者:互联网

文章目录


前言


App数据抓包分析

打开豆果美食APP

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

得到对应的JSON数据
在这里插入图片描述

对应代码

    url = "https://api.douguo.net/recipe/flatcatalogs"
    data = {
        "client": "4,",
        "_vs": "0",
    }
    count = 0
    response = handle_request(url, data)
    # 转化为json格式
    index_response_dict = json.loads(response.text)

使用在线JSON解析网站进行解析,可以发现我们得到了需要的数据

在这里插入图片描述

那我们就进入红烧肉吧

标签:进阶,url,豆果,App,list,detail,caipu,data,response
来源: https://blog.csdn.net/llllllkkkkkooooo/article/details/118768625