Unofficial Python Library for the Jusibe SMS HTTP API
The first thing you'll need to do is sign up on Jusibe and get your account credentials.
jusibe
is available on PYPI https://pypi.python.org/pypi/jusibe/.
Install with pip
i.e.
pip install jusibe
The library is currently tested against Python versions 2.6.9, 2.7.9, 3.5, 3.6
Python 2:
from jusibe import Jusibe
public_key = 'python_public_key_here' #change this
access_token = 'access_token__here' #change this
jusibe = Jusibe(public_key, access_token)
#send SMS
response = jusibe.send_message('234812345678', 'sender, 'message to send')
print response
#check available credit
available_credit = jusibe.check_available_credit()
print available_credit
Python 3:
from jusibe import Jusibe
public_key = 'python_public_key_here' #change this
access_token = 'access_token__here' #change this
jusibe = Jusibe(public_key, access_token)
#send SMS
response = jusibe.send_message('234812345678', 'sender, 'message to send')
print(response)
#check available credit
available_credit = jusibe.check_available_credit()
print(available_credit)
Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.
The MIT License (MIT). Please see License File for more information.