/sigmasms

Sigma SMS API (Python3) — SMS API for business. Effective information and advertising SMS distribution to customers. Register on the platform and get 100 SMS for testing the service. SigmaSMS works directly with telecom operators, ensuring delivery of messages to customers.

🛠️ This repository was created using the GitUpload.

Languages:
🇩🇪 Deutsch | 🇬🇧 English | 🇪🇸 Spanish | 🇫🇷 French | 🇮🇹 Italian | 🇷🇺 Russian


Moscow

Sigma SMS API (Python3)

SMS API for business

Version = 0.1.7
Library name = sigmasms
Title = Sigma SMS API (Python 3)
Keywords = Sigma SMS Gate API Python

Hot to install

pip3 install sigmasms==0.1.7

How to use

from sigmasms import SIGMA

sigma_username = 'my_username'
sigma_password = 'my_password'

res = SIGMA(username=sigma_username, password=sigma_password).send(sender='B-Media', message='Hello Mark!!!', recipients=['+34777777777','+34777777778',])
print(res)

#Retrieving sms status
#msg_id = 'c81736cd-2919-4e6f-ac91-41bbd99fa085'
msg_id = res['id']
status = SIGMA(username=sigma_username, password=sigma_password).status(msg_id=msg_id)
print(status)

🛠️ This repository was created using the GitUpload.