赞
踩
某人为了期末作业(非计算机系的文科生)想获取数据做分析,奈何不会八爪鱼,于是乎她成了我的甲方。甲方妈妈的需求是这样的:爬取携程网和同程网的对于三亚蜈支洲岛的评论。
爬取的地址:https://you.ctrip.com/sight/sanya61/3244.html#comment
import requests import json import time headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36', } posturl = "https://m.ctrip.com/restapi/soa2/13444/json/getCommentCollapseList?_fxpcqlniredt=09031028411306444964" def getdata(): j = 1 for i in range(1, 51): request = { 'arg': { 'channelType': '2', 'collapseType': '0', 'commentTagId': '0', 'pageIndex': str(i), 'pageSize': '10', 'poiId': '10558614', 'sortType': '3', 'sourceType': '1', 'starType': '0'}, 'head': { 'auth': "", 'cid': "09031028411306444964", 'ctok': "", 'cver': "1.0", 'extension': [], 'lang': "01", 'sid'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。