python module which provide interface to smsfarm.sk
All dependencies are in requirements.txt
file and you can install they using following command
pip install -r requirements.txt
You can install from source code
git clone https://github.com/j-mak/smsfarm.git
cd smsfarm
python setup.py develop
or you can install this package through pip using following command
pip install smsfarm
from smsfarm import Client
client = Client("some-code", "some-id")
client.recipients = '+421900123456'
result = client.send_message("Hello World!")
if result.success:
# message was sended without any error
print(result.data)
delivery_status = client.get_message_status(result.data)
if delivery_status.success:
print(delivery_status.data)
- Jozef 'sunny' Mak
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details