◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
scrapy爬虫问题:
在运行scrapy爬虫时,出现"tuple index out of range"错误,且未能获取期望的json数据。
问题原因:
代码中follows_url的format参数缺少'user',导致参数列表为空,引发索引错误。
修改方案:
根据问题的描述,代码中follows_url的format参数应该为:
follows_url = 'https://www.zhihu.com/api/v4/members/{}/followees?includ={include}&offset={offset}&limit={limit}'
其中,{}中的内容替换为正确的'user'参数。
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。