{"id":17922524,"url":"https://github.com/s0md3v/proxify","last_synced_at":"2026-05-19T19:44:19.537Z","repository":{"id":39886417,"uuid":"118955086","full_name":"s0md3v/proxify","owner":"s0md3v","description":"A python module for dumping usable proxies.","archived":false,"fork":false,"pushed_at":"2019-11-13T13:41:18.000Z","size":29,"stargazers_count":165,"open_issues_count":2,"forks_count":55,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-04-24T18:39:18.432Z","etag":null,"topics":["proxies","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/s0md3v.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}},"created_at":"2018-01-25T19:02:29.000Z","updated_at":"2026-03-28T15:58:10.000Z","dependencies_parsed_at":"2022-07-27T08:32:26.147Z","dependency_job_id":null,"html_url":"https://github.com/s0md3v/proxify","commit_stats":null,"previous_names":["ultimatehackers/proxify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/s0md3v/proxify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fproxify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fproxify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fproxify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fproxify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s0md3v","download_url":"https://codeload.github.com/s0md3v/proxify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s0md3v%2Fproxify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33229731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T15:49:41.270Z","status":"ssl_error","status_checked_at":"2026-05-19T15:49:22.917Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","python"],"created_at":"2024-10-28T20:39:30.096Z","updated_at":"2026-05-19T19:44:19.504Z","avatar_url":"https://github.com/s0md3v.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proxify [![python](https://img.shields.io/badge/Python-universal-white.svg?style=style=flat-square)](https://www.python.org/downloads/) ![version](\u003chttps://img.shields.io/badge/Version-v1_(stable)-blue.svg?style=style=flat-square\u003e) [![license](https://img.shields.io/badge/License-GPL_3-orange.svg?style=style=flat-square)](https://github.com/UltimateHacke/XSStrike/blob/master/license.txt)\n\n\u003cimg src='https://i.imgur.com/AidfpCt.png' /\u003e\n\nProxify is a python module for dumping usable proxies.\u003c/br\u003e\nIt supports both python2 and python3 and can be install via pip as follows.\n\n```\npip install proxify\n```\n\n## Documentation\n\nThe proxies returned by \u003cb\u003eproxify\u003c/b\u003e are in following format:\n\n```py\n[{\n\t'ip': '---.---.---.---',\n\t'port': '------',\n\t'country': {\n\t\t'code': '--',\n\t\t'name': '-------'\n\t},\n\t'anonymity': '--------',\n\t'google': True / False,\n\t'https': True / False,\n\t'last_update': '--------',\n\t'url': 'protocol://ip_address:port'\n}]\n```\n\nTo get 1 proxy you can simply do this:\n\n```python\nimport proxify\nproxy = proxify.fetch(count=1)\n```\n\nOutput:\n\n```\n[{\n\t'ip': '138.36.7.45',\n\t'port': '40973',\n\t'country': {\n\t\t'code': 'BR',\n\t\t'name': 'Brazil'\n\t},\n\t'anonymity': 'elite proxy',\n\t'google': False,\n\t'https': True,\n\t'last_update': '1 minute ago',\n\t'url': 'https://138.36.7.45:40973'\n}]\n```\n\n\u003chr /\u003e\n\nTo get many proxies, do this:\n\n```python\nimport proxify\nproxy = proxify.fetch()\n```\n\nOutput:\n\n```python\n[{\n\t'ip': '138.36.7.45',\n\t'port': '40973',\n\t'country': {\n\t\t'code': 'BR',\n\t\t'name': 'Brazil'\n\t},\n\t'anonymity': 'elite proxy',\n\t'google': False,\n\t'https': True,\n\t'last_update': '1 minute ago',\n\t'url': 'https://138.36.7.45:40973'\n},\n....\n{\n\t'ip': '189.51.101.126',\n\t'port': '39108',\n\t'country': {\n\t\t'code': 'BR',\n\t\t'name': 'Brazil'\n\t},\n\t'anonymity': 'elite proxy',\n\t'google': False,\n\t'https': False,\n\t'last_update': '3 minutes ago',\n\t'url': 'http://189.51.101.126:39108'\n}]\n```\n\n\u003chr /\u003e\n\nTo dump a specific number of proxies, lets say '2'. You can do this:\n\n```python\nimport proxify\nproxy = proxify.get(count=2)\n```\n\nOutput:\n\n```py\n[{'ip': '125.26.6.98', 'port': '32385', 'country': {'code': 'TH', 'name': 'Thailand'}, 'anonymity': 'elite proxy', 'google': False, 'https': True, 'last_update': '2 minutes ago', 'url': 'https://125.26.6.98:32385'}, {'ip': '117.58.245.114', 'port': '53985', 'country': {'code': 'BD', 'name': 'Bangladesh'}, 'anonymity': 'elite proxy', 'google': False, 'https': True, 'last_update': '2 minutes ago', 'url': 'https://117.58.245.114:53985'}, {'ip': '103.36.126.14', 'port': '43999', 'country': {'code': 'IN', 'name': 'India'}, 'anonymity': 'elite proxy', 'google': False, 'https': True, 'last_update': '2 minutes ago', 'url': 'https://103.36.126.14:43999'}, {'ip': '181.129.140.226', 'port': '38681', 'country': {'code': 'CO', 'name': 'Colombia'}, 'anonymity': 'elite proxy', 'google': False, 'https': True, 'last_update': '2 minutes ago', 'url': 'https://181.129.140.226:38681'}, {'ip': '114.5.195.226', 'port': '8080', 'country': {'code': 'ID', 'name': 'Indonesia'}, 'anonymity': 'anonymous', 'google': False, 'https': True, 'last_update': '2 minutes ago', 'url': 'https://114.5.195.226:8080'}]\n\n```\n\n**NOTE** The `filter()` function dumps **300** proxies which is also the maximum number of proxies. If you specify a number large than 300, it will automatically become 300.\u003cbr\u003e\n\n#### Dependencies\n\n- re\n- urllib\n\nMade with ![heart](https://cloud.githubusercontent.com/assets/4301109/16754758/82e3a63c-4813-11e6-9430-6015d98aeaab.png) by \u003ca href=https://twitter.com/s0md3v\u003eSomdev Sangwan\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0md3v%2Fproxify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs0md3v%2Fproxify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs0md3v%2Fproxify/lists"}