{"id":26171792,"url":"https://github.com/zebbern/proxy-scraper","last_synced_at":"2025-10-29T04:04:47.684Z","repository":{"id":262168226,"uuid":"886417421","full_name":"zebbern/Proxy-Scraper","owner":"zebbern","description":"🌐 | Updated HTTP/HTTPS/SOCKS4/SOCKS5 proxies every hour!","archived":false,"fork":false,"pushed_at":"2025-03-11T07:00:56.000Z","size":247130,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T07:18:53.931Z","etag":null,"topics":["free-proxies","free-proxy","free-proxy-list","http","http-proxies","http-proxy","https","https-proxies","https-proxy","proxies","proxies-checker","proxies-generator","proxies-scraper","proxy","proxy-checker","proxy-list","proxy-scraper","proxychains","socks4","socks5"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zebbern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-10T23:34:55.000Z","updated_at":"2025-03-11T07:01:00.000Z","dependencies_parsed_at":"2024-11-25T04:25:38.159Z","dependency_job_id":"a67684c4-c494-4fb8-b425-970703d5b2a1","html_url":"https://github.com/zebbern/Proxy-Scraper","commit_stats":null,"previous_names":["zebbern/proxy-scraper"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zebbern%2FProxy-Scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zebbern%2FProxy-Scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zebbern%2FProxy-Scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zebbern%2FProxy-Scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zebbern","download_url":"https://codeload.github.com/zebbern/Proxy-Scraper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243104204,"owners_count":20236943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["free-proxies","free-proxy","free-proxy-list","http","http-proxies","http-proxy","https","https-proxies","https-proxy","proxies","proxies-checker","proxies-generator","proxies-scraper","proxy","proxy-checker","proxy-list","proxy-scraper","proxychains","socks4","socks5"],"created_at":"2025-03-11T19:51:19.681Z","updated_at":"2025-10-29T04:04:42.646Z","avatar_url":"https://github.com/zebbern.png","language":null,"readme":"\u003cdiv align=\"center\"\u003e\n\n## Provides Updated `HTTP/HTTPS/Socks4/Socks5` proxies every hour!\n    \n\u003cimg src=\"https://github.com/user-attachments/assets/d6ad457b-87de-4b76-8886-402b7c4bfab5\" style=\"width:45%;\"\u003e\n\n![Python](https://img.shields.io/badge/Python-3.x-blue)\n![Status](https://img.shields.io/badge/Status-Active-green)\n![License](https://img.shields.io/badge/License-MIT-brightgreen)\n\n**This project is for high performance and reliability, with features like proxy validation, testing, and output customization.**\n \n **[Proxy Tester Settings](#how-to-use)** | **[Proxy Tester Code](#proxy-tester-code)** | **[Important Considerations](#important)** \n\n---\n\u003c/div\u003e\n\n## How To Use\n\nWant to test proxies locally? Use the quick tester below! \n\n### Instructions:\n1. Create a file called `proxies.txt` in the same directory.\n2. Paste your proxy list (e.g., `IP:Port` format) into the file.\n3. At the end you get an option to save working proxies to a file for later use.\n4. **Run this Python script:**\n###Important\n**The more \"Workers\" u have the less accurate results you get**\n- More workers = Faster but less working proxies - 10-100 workers\n- Less workers = Slower but more working proxies - 1-10 workers\n### Use 1-10 workers max for the optimal result\n\n### Proxy Tester Code\n```python\nimport requests\nfrom concurrent.futures import ThreadPoolExecutor\nfrom time import sleep\nfrom colorama import Fore, Style, init\n\n# Initialize colorama\ninit(autoreset=True)\n\ndef check_proxy(args):\n    index, total, proxy = args\n    proxy = proxy.strip()\n    proxies = {\n        'http': f'http://{proxy}',\n        'https': f'https://{proxy}',\n    }\n    try:\n        response = requests.get('http://httpbin.org/ip', proxies=proxies, timeout=5)\n        if response.status_code == 200:\n            result = f'{Fore.GREEN}[{index}/{total}] ✅ {proxy}{Style.RESET_ALL}'\n            is_valid = True\n        else:\n            result = f'{Fore.RED}[{index}/{total}] ❌ {proxy}{Style.RESET_ALL}'\n            is_valid = False\n    except requests.exceptions.RequestException:\n        result = f'{Fore.RED}[{index}/{total}] ❌ {proxy}{Style.RESET_ALL}'\n        is_valid = False\n    sleep(0.5)  # Delay to prevent overloading the service\n    return (result, proxy if is_valid else None)\n\nif __name__ == '__main__':\n    with open('proxies.txt', 'r') as file:\n        proxies_list = [line.strip() for line in file if line.strip()]\n    total_proxies = len(proxies_list)\n    valid_proxies = []\n\n    # Prepare arguments for map\n    args_list = [(idx, total_proxies, proxy) for idx, proxy in enumerate(proxies_list, start=1)]\n\n    # Use ThreadPoolExecutor with fewer workers to control request rate\n    with ThreadPoolExecutor(max_workers=5) as executor:\n        # Use executor.map to process proxies in order\n        for result, valid_proxy in executor.map(check_proxy, args_list):\n            print(result)\n            if valid_proxy:\n                valid_proxies.append(valid_proxy)\n\n    # After all proxies have been checked, prompt to save valid ones\n    if valid_proxies:\n        save_choice = input(\"Do you want to save the valid proxies to a file? (y/n): \")\n        if save_choice.lower() == 'y':\n            output_file = input(\"Enter the filename to save valid proxies (default: valid_proxies.txt): \").strip()\n            if not output_file:\n                output_file = 'valid_proxies.txt'\n            with open(output_file, 'w') as f:\n                for proxy in valid_proxies:\n                    f.write(f'{proxy}\\n')\n            print(f\"Valid proxies saved to {output_file}\")\n    else:\n        print(\"No valid proxies found.\")\n\n```\n\n5. You can save file as **proxies.txt** to get the new working tested proxies into the same file u put them in\n\n\u003ca name=\"important\"\u003e\u003c/a\u003e\n\u003e [!Important]\n\u003e \n\u003e ---\n\u003e ### Legal and Ethical Use:\n\u003e - **Use the proxies responsibly and ethically.**\n\u003e - **Any illegal or unethical use of this tool or its proxies is solely your responsibility.**\n\u003e - **This is all public available proxies and has nothing to do with me this list is only for easy access to proxies.**\n\u003e ---\n\u003e ### Proxy Reliability and Security:\n\u003e - **Public proxies may be unreliable and pose security risks.**\n\u003e - **Avoid using them for sensitive operations or data.**\n\u003e - **Remember that free proxies may log browsing history, so your online privacy may be compromised**\n\u003e ---\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzebbern%2Fproxy-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzebbern%2Fproxy-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzebbern%2Fproxy-scraper/lists"}