Notify Bulk SMS Library Documentation
Introduction
https://www.olympusmedia.co.zm
Notify is a bulk SMS Module for sending SMS's accross local zambian phone numbers. It is embedded in GameBox - Download the app here.
Instructions
Download GameBox and Sign Up. GameBox - Download the app here. Place your username and password in .env file as
NOTIFY_SMS_USERNAME="2609xxxxxxx"
NOTIFY_SMS_PASSWORD="***********"
⚙️ Installation
Before you begin, ensure you have Python installed on your system. This module requires Python version 3.12 or higher to run.
pip install notify_sms_py
⚡️ Quickstart
Get Sender
Returns all the senders(business name) you created on your profile
from notify_sms_py import notify_sms
client = notify_sms.NewClient(
username="26097xxxxxx",
password="*********"
)
res = client.get_senders()
print(res)
Send SMS to Contact(s)
Sends sms to a list of recipients defined as contacts
from notify_sms_py import notify_sms
client = notify_sms.NewClient(
username="26097xxxxxx",
password="*********"
)
res = client.send_to_contacts(contacts=["+26097xxxxxx"], message="Hello Patrick from Notify SMS", sender_id="1234888888888888888888")
print(res)
🎯 Features
- Send SMS to channel
- Send SMS to contact groups
- Send SMS to contacts
- Check SMS balance(WIP) - Coming soon
👍 Contribute
If you want to say Thank You and/or support the active development of Notify SMS:
Release files for notify-sms-py 1.1.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| notify_sms_py-1.1.2.tar.gz | 14.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| notify_sms_py-1.1.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 19.1 kB
Release files / notify_sms_py-1.1.2.tar.gz
| Download URL | notify_sms_py-1.1.2.tar.gz |
|---|---|
| Size | 14.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
05e97dc14d97d2e275c4f91f4ecad93bf450cc959bf8259cef548007bf37236c
|
|
BLAKE2b-256 checksum How to use checksums |
c5157cfe9221fb5f50eb7bd315f18264ea3fb7889f407473b505af87634f488f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.11.0
|
Release files / notify_sms_py-1.1.2-py3-none-any.whl
| Download URL | notify_sms_py-1.1.2-py3-none-any.whl |
|---|---|
| Size | 4.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
26390348c29bbc64b8eff3db09fc17a30091fffc2bef3c1eeb7da8ebd2faf234
|
|
BLAKE2b-256 checksum How to use checksums |
a00d8693adce938b2143117089f701d48942040c03af37eb985d0ea711ad15cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.11.0
|