{"id":27198178,"url":"https://github.com/bitwise-01/proxies","last_synced_at":"2025-08-21T08:16:24.682Z","repository":{"id":111674476,"uuid":"132040644","full_name":"Bitwise-01/Proxies","owner":"Bitwise-01","description":"A Simple Proxy Scraper","archived":false,"fork":false,"pushed_at":"2019-03-18T04:16:30.000Z","size":5,"stargazers_count":35,"open_issues_count":0,"forks_count":14,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-09T20:44:58.684Z","etag":null,"topics":["proxies","scraper"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bitwise-01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-05-03T19:28:48.000Z","updated_at":"2024-05-15T23:01:06.000Z","dependencies_parsed_at":"2023-05-25T13:00:10.143Z","dependency_job_id":null,"html_url":"https://github.com/Bitwise-01/Proxies","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bitwise-01/Proxies","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bitwise-01%2FProxies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bitwise-01%2FProxies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bitwise-01%2FProxies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bitwise-01%2FProxies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bitwise-01","download_url":"https://codeload.github.com/Bitwise-01/Proxies/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bitwise-01%2FProxies/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271448405,"owners_count":24761441,"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","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["proxies","scraper"],"created_at":"2025-04-09T20:33:04.032Z","updated_at":"2025-08-21T08:16:24.675Z","avatar_url":"https://github.com/Bitwise-01.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"### A simple proxy scraper\r\n\r\nGet ten random proxies \r\n```python\t\r\nfrom scraper import Scraper    \r\n\r\n\r\nif __name__ == '__main__':\r\nscraper = Scraper()    \r\nproxies = scraper.scrape(size=10)  \r\n\r\nwhile proxies.qsize:\r\nproxy = proxies.get()\r\nprint(proxy)\r\n```\r\n\r\nGet proxies from Japan\r\n```python\r\nfrom scraper import Scraper\r\n\r\n\r\nif __name__ == '__main__':\r\n scraper = Scraper()    \r\n proxies = scraper.scrape(country='Japan')\r\n    \r\n while proxies.qsize:\r\n  proxy = proxies.get()\r\n  print(proxy)\r\n```\r\n\r\nGet three proxies from Japan\r\n```python\r\nfrom scraper import Scraper\r\n\r\n\r\nif __name__ == '__main__':\r\n scraper = Scraper()    \r\n proxies = scraper.scrape(country='Japan', size=3)\r\n    \r\n while proxies.qsize:\r\n  proxy = proxies.get()\r\n  print(proxy)\r\n```\r\n\r\n\r\nGet SSL proxies\r\n```python\r\nfrom scraper import Scraper\r\n\r\n\r\nif __name__ == '__main__':\r\n scraper = Scraper()    \r\n proxies = scraper.scrape(protocol='SSL')\r\n    \r\n while proxies.qsize:\r\n  proxy = proxies.get()\r\n  print(proxy)\r\n```\r\n\r\nGet SOCKS5 proxies\r\n```python\r\nfrom scraper import Scraper\r\n\r\n\r\nif __name__ == '__main__':\r\n scraper = Scraper()    \r\n proxies = scraper.scrape(protocol='SOCKS5')\r\n    \r\n while proxies.qsize:\r\n  proxy = proxies.get()\r\n  print(proxy)\r\n```\r\n\r\nGet proxies on port 8080\r\n```python\r\nfrom scraper import Scraper\r\n\r\n\r\nif __name__ == '__main__':\r\n scraper = Scraper()    \r\n proxies = scraper.scrape(port=8080)\r\n    \r\n while proxies.qsize:\r\n  proxy = proxies.get()\r\n  print(proxy)\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitwise-01%2Fproxies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitwise-01%2Fproxies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitwise-01%2Fproxies/lists"}