(self)
| 223 | domain = 'checkerproxy.net' |
| 224 | |
| 225 | async def _pipe(self): |
| 226 | exp = r'''href\s*=\s*['"](/archive/\d{4}-\d{2}-\d{2})['"]''' |
| 227 | page = await self.get('https://checkerproxy.net/') |
| 228 | urls = [ |
| 229 | 'https://checkerproxy.net/api%s' % path |
| 230 | for path in re.findall(exp, page) |
| 231 | ] |
| 232 | await self._find_on_pages(urls) |
| 233 | |
| 234 | |
| 235 | class Proxz_com(Provider): |
nothing calls this directly
no test coverage detected