0 purchases
smsc 0.1.1
SMSC.ru HTTP API Library.
Installation
Install smsc package from PyPI:
$ pip install smsc
Getting started
Basic usage sample:
>>> from smsc.messages import SMSMessage
>>> from smsc.api import SMSC
>>> client = SMSC(login='alexey', password='psw')
>>> res = client.send(to='79999999999', message=SMSMessage(text='Hello, World!'))
>>> res.count
1
>>> res.cost
1.44
Documentation
Documentation is available at Read the Docs.
Links
SMSC.ru HTTP API
Release History
0.1.1 (2017-05-30)
Default charset set to UTF-8.
0.1.0 (2017-05-29)
Birth!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.