proxylists


Nameproxylists JSON
Version 0.13.2 PyPI version JSON
download
home_pagehttps://github.com/phenobarbital/proxylists
SummaryPackage for getting useful proxy servers, can use lists like hidemy or proxydb.
upload_time2024-09-26 13:06:24
maintainerNone
docs_urlNone
authorJesus Lara
requires_python>=3.9.12
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # proxylists

Proxylists is a simple tool for getting a list of proxy IPs from
free proxy servers using several providers.

## Supported Providers:

 * free-proxy-list.net
 * hidemy.name
 * proxydb.net

can retrieve a list of IPs by provider or from all of them
using the "get_proxies()" method.

### Download

The list can be tabulated (one proxy by line, to save on .txt, csv, etc)
or a python dictionary.

## Usage

```python

from proxylist import get_proxies

proxies = get_proxies()

```

Or get the list from a single provider:

```python

from proxylist.proxies import ProxyDB # getting from proxydb.net
import asyncio

async def get_proxies():
     return await ProxyDB().get_list()

loop = asyncio.get_event_loop()
proxies = loop.run_until_complete(get_proxies())
print(proxies)
```
### License ###

Proxylists is licensed under BSD license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/phenobarbital/proxylists",
    "name": "proxylists",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9.12",
    "maintainer_email": null,
    "keywords": null,
    "author": "Jesus Lara",
    "author_email": "jesuslarag@gmail.com",
    "download_url": null,
    "platform": null,
    "description": "# proxylists\n\nProxylists is a simple tool for getting a list of proxy IPs from\nfree proxy servers using several providers.\n\n## Supported Providers:\n\n * free-proxy-list.net\n * hidemy.name\n * proxydb.net\n\ncan retrieve a list of IPs by provider or from all of them\nusing the \"get_proxies()\" method.\n\n### Download\n\nThe list can be tabulated (one proxy by line, to save on .txt, csv, etc)\nor a python dictionary.\n\n## Usage\n\n```python\n\nfrom proxylist import get_proxies\n\nproxies = get_proxies()\n\n```\n\nOr get the list from a single provider:\n\n```python\n\nfrom proxylist.proxies import ProxyDB # getting from proxydb.net\nimport asyncio\n\nasync def get_proxies():\n     return await ProxyDB().get_list()\n\nloop = asyncio.get_event_loop()\nproxies = loop.run_until_complete(get_proxies())\nprint(proxies)\n```\n### License ###\n\nProxylists is licensed under BSD license.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Package for getting useful proxy servers, can use lists like hidemy or proxydb.",
    "version": "0.13.2",
    "project_urls": {
        "Documentation": "https://github.com/phenobarbital/proxylists/",
        "Funding": "https://paypal.me/phenobarbital",
        "Homepage": "https://github.com/phenobarbital/proxylists",
        "Say Thanks!": "https://saythanks.io/to/phenobarbital",
        "Source": "https://github.com/phenobarbital/proxylists",
        "Tracker": "https://github.com/phenobarbital/proxylists/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10a5253a131b1e2fc66a216a94de817f5f057dbbf01051355d4c35780473d5a8",
                "md5": "4d5278c28ffaa52c82aa0caee199cde8",
                "sha256": "44dac1a9376a60d5bb7483f4faca9c9fcaca806bef12337e742bae2bd166755b"
            },
            "downloads": -1,
            "filename": "proxylists-0.13.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4d5278c28ffaa52c82aa0caee199cde8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9.12",
            "size": 10570,
            "upload_time": "2024-09-26T13:06:24",
            "upload_time_iso_8601": "2024-09-26T13:06:24.859440Z",
            "url": "https://files.pythonhosted.org/packages/10/a5/253a131b1e2fc66a216a94de817f5f057dbbf01051355d4c35780473d5a8/proxylists-0.13.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-26 13:06:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "phenobarbital",
    "github_project": "proxylists",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "proxylists"
}
        
Elapsed time: 1.83559s