本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

Scrapy爬虫报错“IndexError:tupleindexoutofrange”:如何解决follows

网络教程 app 1℃

Scrapy爬虫报错“IndexError:tupleindexoutofrange”如何解决follows

scrapy爬虫问题

在本例中,scrapy爬虫似乎导致了如下错误:

indexerror: tuple index out of range

问题剖析

在 zhihu.py 文件中一行 20 的 start_requests 方法中,有一个 request 对象使用 follows_url url 创建:

yield request(self.follows_url.format(user=self.start_user, include=self.follows_query, offset=0, limit=20), callback=self.parse_follows)

根据错误信息,此 request 对象似乎尝试访问超出范围的 tuple 索引。

解决方法

检查 follows_url 中是否存在“用户”参数。用户参数应为花括号内第一个参数,但在此例中似乎缺少。

正确的 follows_url 应如下所示:

follows_url = ‘www.zhihu./api/v4/members/{user}/followees?includ={include}&offset={offset}&limit={limit}’

确保在创建 request 对象之前,user 参数已正确设置。对 follows_url 的格式化也需要进行相应调整。

此外,pycharm 中出现的“overrides method in spider”消息可能是因为 zhihuspider 类中存在同名方法的重写。从父类 spider 继承的方法应正确设置,并且在重写的自定义方法中,你需要明确指定 @overrides 装饰器。

以上就是Scrapy爬虫报错“IndexError: tuple index out of range”:如何解决 follows_url 的格式化问题?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » Scrapy爬虫报错“IndexError:tupleindexoutofrange”:如何解决follows

喜欢 (0)