{"id":34024538,"url":"https://github.com/victormartinez/python_proxy_bonanza","last_synced_at":"2026-04-02T01:01:24.512Z","repository":{"id":52704800,"uuid":"66527088","full_name":"victormartinez/python_proxy_bonanza","owner":"victormartinez","description":"A lightweight client to get proxies from Proxy Bonanza service","archived":false,"fork":false,"pushed_at":"2021-04-20T17:27:28.000Z","size":20,"stargazers_count":3,"open_issues_count":2,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-15T06:25:22.776Z","etag":null,"topics":["bonanza","client","proxy","proxy-bonanza-service","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/victormartinez.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":"2016-08-25T05:17:19.000Z","updated_at":"2024-02-27T00:24:18.000Z","dependencies_parsed_at":"2022-09-10T00:40:28.861Z","dependency_job_id":null,"html_url":"https://github.com/victormartinez/python_proxy_bonanza","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/victormartinez/python_proxy_bonanza","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victormartinez%2Fpython_proxy_bonanza","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victormartinez%2Fpython_proxy_bonanza/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victormartinez%2Fpython_proxy_bonanza/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victormartinez%2Fpython_proxy_bonanza/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/victormartinez","download_url":"https://codeload.github.com/victormartinez/python_proxy_bonanza/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victormartinez%2Fpython_proxy_bonanza/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: 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":["bonanza","client","proxy","proxy-bonanza-service","python"],"created_at":"2025-12-13T16:24:58.663Z","updated_at":"2026-04-02T01:01:24.458Z","avatar_url":"https://github.com/victormartinez.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# python-proxy-bonanza\n\nA lightweight client to get proxies from Proxy Bonanza service.\n\n[![Build Status](https://travis-ci.org/victormartinez/python_proxy_bonanza.svg?branch=master)](https://travis-ci.org/victormartinez/python_proxy_bonanza)\n[![Code Health](https://landscape.io/github/victormartinez/python_proxy_bonanza/master/landscape.svg?style=flat)](https://landscape.io/github/victormartinez/python_proxy_bonanza/master)\n\n\n## Pypi\n\nhttps://pypi.python.org/pypi/proxy-bonanza\n\n\n## Usage\n\nAt first it is necessary to get the user package ids and, then, get the proxies available for each id.\n\n```\nfrom proxy_bonanza.client import ProxyBonanzaClient\n\nclient = ProxyBonanzaClient(api_key='\u003cYOUR_API_KEY\u003e')\nids = client.get_user_package_ids()\nproxies = client.get_proxies(\u003cYOUR_ID\u003e)\n\n```\n\n### Obtaining User Package ids\n\n```\n\u003e client.get_user_package_ids()\n\n[5478, 9870, 1209]\n```\n\n### Obtaining Proxies\n\n\n```\n\u003e client.get_proxies(id1)\n\n{\n    u'active': True,\n    u'id': 19316,\n    u'ip': u'123.45.678.910',\n    u'modified': u'2016-05-22T06:44:24+0000',\n    u'port_http': 60099,\n    u'port_socks': 61336,\n    u'proxyserver': {\n        u'georegion': {\n            u'country': {\n                u'continent': u'southamerica',\n                u'eunion': False,\n                u'flag_image': u'br.gif',\n                u'id': 15,\n                u'isocode': u'BR',\n                u'name': u'Brazil',\n                u'vat_rate': None\n            },\n        u'name': u'Sao Paulo'\n        },\n        u'georegion_id': 13\n    },\n    u'login': u'fakelogin',\n    u'password': u'qwerty123'\n}\n```\n\n### Contributing\n1. Clone the repository and set up your environment\n1. Develop the feature or fix\n1. Create and execute the tests using pytest\n1. Open a Pull Request =)\n\n##### Note:\nTo setup your environment just run:\n```console\n$ git clone git@github.com:victormartinez/python_proxy_bonanza.git\n$ python -m venv \u003cyour_virtual_env\u003e\n$ pip install -r requirements.txt\n$ pip install -r requirements-test.txt\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictormartinez%2Fpython_proxy_bonanza","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvictormartinez%2Fpython_proxy_bonanza","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictormartinez%2Fpython_proxy_bonanza/lists"}