if proxypool if full return: bool
(self)
| 20 | self.testers = [tester_cls() for tester_cls in self.testers_cls] |
| 21 | |
| 22 | def is_full(self): |
| 23 | """ |
| 24 | if proxypool if full |
| 25 | return: bool |
| 26 | """ |
| 27 | return self.redis.count() >= PROXY_NUMBER_MAX |
| 28 | |
| 29 | @logger.catch |
| 30 | def run(self): |