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
- Host: GitHub
- URL: https://github.com/meichthys/mullvad-api
- Owner: meichthys
- License: mit
- Created: 2020-07-24T01:14:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-08T01:29:55.000Z (over 3 years ago)
- Last Synced: 2025-04-02T06:51:15.832Z (over 1 year ago)
- Topics: api, mullvad
- Language: Python
- Homepage:
- Size: 72.3 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```