You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2022. It is now read-only.
我的理解 received = self.find_proxies(page) 从当前页找到代理,然后 self.proxies = received 赋值给了实例的proxies属性,看起来是第1页找到10个,len(self.proxies)=10,然后第2页找到20个,赋值一下,len(self.proxies)=20了,但实际执行情况又不是,self.proxies是合并的结果,所以合并数组的代码在哪?