construct proxy urls so spiders can directly use them
(self, scheme, ip, port)
| 161 | return True |
| 162 | |
| 163 | def construct_proxy_url(self, scheme, ip, port): |
| 164 | """construct proxy urls so spiders can directly use them""" |
| 165 | return '{}://{}:{}'.format(scheme, ip, port) |
| 166 | |
| 167 | def exists(self, url, *flags): |
| 168 | """check whether the flag in url or not""" |
no outgoing calls
no test coverage detected