A Python wrapper around the BlueVia API.
Project description
pyBlueVia is an Apache2 Licensed library, written in Python, for making easier the usage of BlueVia API.
pyBlueVia implements an Api class which wraps the BlueVia API, offering methods for:
Managing OAuth 2.0 authorization process for APIs which need an access token.
Sending SMS and MMS.
Asking for the delivery status of sent SMS/MMS.
Retrieve SMS/MMS sent to your app.
Parsing notifications (delivery status and incoming SMS/MMS) coming from BlueVia.
Installation
To install pyBlueVia:
$ pip install pyBlueVia
Examples
Those are a couple of examples about how to use pyBlueVia to send an SMS and query its delivery status:
# Create the API wrapper
bluevia_client = bluevia.Api(CLIENT_ID, CLIENT_SECRET, ACCESS_TOKEN)
# Send an SMS
sms_id = bluevia_client.send_sms(to='34600000000', message='Hello world!')
# Ask for the delivery status of the sent SMS
delivery_status = bluevia_client.get_sms_delivery_status(sms_id)
print 'Delivery status for the SMS sent to {0}: {1}'.format(delivery_status['address'],
delivery_status['status'])
You can see more usage examples here.
Take a look to the whole documentation at https://pybluevia.readthedocs.org/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyBlueVia-0.1.0.tar.gz
.
File metadata
- Download URL: pyBlueVia-0.1.0.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be7e658e5210c17c9361e0f1b22f25a5d3ae85ec59a533c4c3386f9c9374aaf6 |
|
MD5 | ff1d621862c04722d1827b4c5e8a9d7d |
|
BLAKE2b-256 | b6e70c4a70f09718f2e0789525334f2aef850359505269a752c6a27ddf6ea79d |