Rotating Proxy
v0.1.6
Ein Python -Paket zur effektiven Verwaltung und Verwendung von rotierenden Proxys. Dieses Modul bietet eine einfache und effiziente Möglichkeit, mehrere Proxys zu verarbeiten und automatisch zwischen ihnen zu wechseln, um das Web -Scraping oder alle HTTP -Anforderungen zu verbessern, die Anonymität erfordern.
Sie können das Paket mit PIP installieren:
pip install rotating-proxy from rotating_proxy import ProxyPool , ProxySession
class Project :
def __init__ ( self ):
# Initialize the proxy pool with a list of proxies.
# Replace "127.0.0.1:80" with your own proxies in the format:
# ["http://proxy1","http://proxy2",..."http://proxyN"]
self . proxy_pool = ProxyPool ([ "http://127.0.0.1:80" ])
self . proxy_pool . filter_working_proxies ()
self . proxy_session = ProxySession ( self . proxy_pool )
def request_function ( self , ** kwargs ):
try :
response = self . proxy_session . request ( ** kwargs )
print ( f"IP Address: { response . json ()[ 'origin' ] } " )
except Exception as e :
print ( f"An error occurred: { str ( e ) } " )
if __name__ == "__main__" :
project = Project ()
project . request_function ( url = "https://httpbin.org/ip" , method = "GET" )Beiträge sind willkommen! Wenn Sie Vorschläge für Verbesserungen oder zusätzliche Funktionen haben, können Sie ein Problem eröffnen oder eine Pull -Anfrage senden.
Dieses Projekt ist unter der MIT -Lizenz lizenziert. Weitere Informationen finden Sie in der Lizenzdatei.