An open API service indexing awesome lists of open source software.

https://github.com/meichthys/mullvad-api

Python wrapper around mullvad api
https://github.com/meichthys/mullvad-api

api mullvad

Last synced: about 1 year ago
JSON representation

Python wrapper around mullvad api

Awesome Lists containing this project

README

          

# MullvadAPI

Python wrapper around Mullvad api

## Installation

```bash
pip install mullvad_api
```

## QuickStart

```python
>>> from mullvad_api import MullvadAPI
>>> mullvad = MullvadAPI()
>>> mullvad.data.keys() # List Mullvad API keys
>>> mullvad.data["mullvad_exit_ip"] # Check if Mullvad VPN is active
True
>>> mullvad.data["ip"] # Check exit ip address
'89.46.62.92'
```