evpn


Nameevpn JSON
Version 1.0.3 PyPI version JSON
download
home_page
SummaryExpressVPN python native API
upload_time2022-12-27 20:56:27
maintainer
docs_urlNone
authorthewh1teagle
requires_python>=3.7
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Evpn
ExpressVPN python native API

Control [express VPN](https://www.expressvpn.com/vpn-software) on your machine using [Native messaging](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging) protocol.

##### Setup
```shell
pip3 install -U evpn
```

##### Basic Usage
```python
from evpn import ExpressVpnApi
import random

with ExpressVpnApi() as api:
    locations = api.locations # get available locations
    loc = random.choice(locations)
    api.connect(loc["id"])
```

##### Examples
[random_location.py](https://github.com/thewh1teagle/Evpn/blob/main/examples/random_location.py)

##### About
- This library is Cross Platform (*Windows*, *Linux*, *MacOS* are supported)
- It talking to expressVPN daemon using native message protocol.

##### Development
1. Install dependencies
`pip3 install .`
2. Install dev dependencies
`pip3 install .[dev]`
3. Lint it
`pylint --rcfile=.pylintrc --recursive=y .`
4. Test your changes
`python3 -m pytest .`
5. Make new PR 🚀

##### Contributing
Every contribution is welcome. If you want to contribute but are unsure where to start, any open issues are fair game!


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "evpn",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "thewh1teagle",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/a7/38/ef389cff06f4769ec8e1532089305c2212f77e4c6702b2aecf589eeb0f75/evpn-1.0.3.tar.gz",
    "platform": null,
    "description": "# Evpn\nExpressVPN python native API\n\nControl [express VPN](https://www.expressvpn.com/vpn-software) on your machine using [Native messaging](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging) protocol.\n\n##### Setup\n```shell\npip3 install -U evpn\n```\n\n##### Basic Usage\n```python\nfrom evpn import ExpressVpnApi\nimport random\n\nwith ExpressVpnApi() as api:\n    locations = api.locations # get available locations\n    loc = random.choice(locations)\n    api.connect(loc[\"id\"])\n```\n\n##### Examples\n[random_location.py](https://github.com/thewh1teagle/Evpn/blob/main/examples/random_location.py)\n\n##### About\n- This library is Cross Platform (*Windows*, *Linux*, *MacOS* are supported)\n- It talking to expressVPN daemon using native message protocol.\n\n##### Development\n1. Install dependencies\n`pip3 install .`\n2. Install dev dependencies\n`pip3 install .[dev]`\n3. Lint it\n`pylint --rcfile=.pylintrc --recursive=y .`\n4. Test your changes\n`python3 -m pytest .`\n5. Make new PR \ud83d\ude80\n\n##### Contributing\nEvery contribution is welcome. If you want to contribute but are unsure where to start, any open issues are fair game!\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "ExpressVPN python native API",
    "version": "1.0.3",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "75c36ab21a16a627e4707f14837b1d87",
                "sha256": "8a00af4462d0f22b8b66575a0f12e5f75a1ff13c74cf858454f81076d157fce6"
            },
            "downloads": -1,
            "filename": "evpn-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "75c36ab21a16a627e4707f14837b1d87",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6726,
            "upload_time": "2022-12-27T20:56:25",
            "upload_time_iso_8601": "2022-12-27T20:56:25.122351Z",
            "url": "https://files.pythonhosted.org/packages/4d/a5/64c58befb826cbf30dde258a21adabf3a48358c0d3e59d9ea1155748cd20/evpn-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "844a0faf0ba5dc47177fc3eeff5863da",
                "sha256": "ad83de6c4f2a8e842a286477a24bc1644ee77fb185a23ca84ab2d067c18b71b9"
            },
            "downloads": -1,
            "filename": "evpn-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "844a0faf0ba5dc47177fc3eeff5863da",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 7423,
            "upload_time": "2022-12-27T20:56:27",
            "upload_time_iso_8601": "2022-12-27T20:56:27.038786Z",
            "url": "https://files.pythonhosted.org/packages/a7/38/ef389cff06f4769ec8e1532089305c2212f77e4c6702b2aecf589eeb0f75/evpn-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-27 20:56:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "evpn"
}
        
Elapsed time: 0.02119s