Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.73 KB

README_de.md

File metadata and controls

45 lines (30 loc) · 1.73 KB

🛠️ Dieses Repository wurde mit GitUpload erstellt.

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


Moskau

Sigma SMS API (Python3)

SMS API für Unternehmen

Version = 0.1.7
Bibliotheksname = sigmasms
Titel = Sigma SMS API (Python 3)
Schlüsselwörter = Sigma SMS Gate API Python

Heiß zu installieren

pip3 install sigmasms==0.1.7

Wie benutzt man

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)

🛠️ Dieses Repository wurde mit GitUpload erstellt.