Vivial Connect API Client Library for Python
Project description
VivialConnect is a simple SMS/MMS API. It’s designed specifically for developers seeking a simple, affordable and scalable messaging solution.
Register an API account here: https://www.vivialconnect.net and login to the website to buy your first phone number.
Setup is Easy!
Copy this code into a file named example.py
from vivialconnect import Resource, Message Resource.api_key = "my-api-key" Resource.api_secret = "my-api-secret" Resource.api_account_id = "123456" def send_message(to_number=None, from_number=None, body=None): message = Message() message.from_number = from_number message.to_number = to_number message.body = body message.send() send_message(to_number='+11234567890', from_number='+19876543210', body='Howdy, from Vivial Connect!')
Update the API key, secret and account id. Change ‘from_number’ to the number you purchased. Then run it:
$ pip install vivialconnect $ python example.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vivialconnect-0.2.4.tar.gz
(20.3 kB
view hashes)
Built Distribution
Close
Hashes for vivialconnect-0.2.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 188c62754da29c197d80d4dde5b41e01cf6eeeeaaef7e37ad8828a11ad8191e3 |
|
MD5 | 957f213475af253b455c133ba46c9cce |
|
BLAKE2-256 | 58d4ed22ea3322e09b9987fe805b997d85a3430e9a401106db557725a9d70a74 |