Source code for scylla.providers.kuaidaili_provider

from requests_html import HTML

from scylla.database import ProxyIP
from scylla.providers import BaseProvider


[docs]class KuaidailiProvider(BaseProvider):
[docs] def urls(self) -> [str]: return [ 'https://www.kuaidaili.com/free/', 'https://www.kuaidaili.com/free/inha/2/', ]
[docs] def parse(self, html: HTML) -> [ProxyIP]: ip_list: [ProxyIP] = [] for ip_row in html.find('#list table tr'): ip_element = ip_row.find('td[data-title="IP"]', first=True) port_element = ip_row.find('td[data-title="PORT"]', first=True) if ip_element and port_element: p = ProxyIP(ip=ip_element.text, port=port_element.text) ip_list.append(p) return ip_list
[docs] @staticmethod def should_render_js() -> bool: return True