Go to file
Kevin F e6ecc715ca Added delete endpoint for sms 2022-12-15 23:27:25 +00:00
.github/workflows removing tests from pipeline for now, fixed more lint errors 2020-03-16 23:18:51 -04:00
tests removing tests from pipeline for now, fixed more lint errors 2020-03-16 23:18:51 -04:00
voipms Added delete endpoint for sms 2022-12-15 23:27:25 +00:00
.gitignore fixing lint errors 2020-03-16 22:58:09 -04:00
LICENSE updated licensing 2019-09-09 02:08:25 -04:00
README.md project now on PyPi 2019-09-03 17:04:43 -04:00
setup.cfg project now on PyPi 2019-09-03 17:04:43 -04:00
setup.py Added delete endpoint for sms 2022-12-15 23:27:25 +00: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 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. Once that's been done, create a Client object as shown below:

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()