From 2372f8f10130b449f4925ada9df2f13015907314 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sat, 10 Jun 2023 15:34:41 -0400 Subject: [PATCH] Added some documentation --- sockhub.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sockhub.py b/sockhub.py index 30aaa8b..1a594dc 100644 --- a/sockhub.py +++ b/sockhub.py @@ -1,11 +1,20 @@ #!/usr/bin/env python # SockSpot Proxy Scraper - Developed by acidvegas in Python (https://git.acid.vegas/proxytools) +''' + +Scrap IP:PORT proxies from a URL list + +''' + import os import re import time import urllib.request +# Can be any URL containing a list of IP:PORT proxies (does not have to be socks5) +# The current list contains proxy sources that are updated frequently with new proxies +# Almost all of the Github repos pull from the same place & contain duplicates (which are removed) urls = set(( 'https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/socks5.txt', 'https://raw.githubusercontent.com/B4RC0DE-TM/proxy-list/main/SOCKS5.txt',