Go to file
Daniel aeaacb6b40 updated README.md to model current status of project 2019-08-18 22:34:19 -04:00
templates added more endpoints, fixed some bugs with code generator 2019-08-18 22:30:31 -04:00
tests initial commit 2019-08-17 22:02:44 -04:00
voipms added more endpoints, fixed some bugs with code generator 2019-08-18 22:30:31 -04:00
.gitignore getIP endpoint now reachable 2019-08-17 22:34:44 -04:00
README.md updated README.md to model current status of project 2019-08-18 22:34:19 -04:00
setup.py initial commit 2019-08-17 22:02:44 -04:00

README.md

voipms-python

A python-based API wrapper for voip.ms.

Installation

You can install this package from PyPi using pip, a package manager for Python. Once pip is installed, run

pip install --upgrade voipms-python

You can also install from source with:

python setup.py install

Requirements

  • Python 2.7+ or 3.4+

Usage

The library needs to be configured with your account's email and API password, the latter of which can be created here. Set the variables voipms.email and voipms.apikey to their respective values:

from voipms.api import Client

email = "test@email.com"
api_password = "01N0sWTdiutWTHNF"

client = Client(email, api_password)

# get current account balance
balance = client.balance.fetch()