Enterprise-ready Python SDK for the NextSMS API (Tanzania)
Project description
nextsms-python-sdk
Enterprise-ready Python SDK for the NextSMS API — Tanzania's leading bulk SMS gateway.
Supports sending single and bulk SMS messages, checking delivery status, querying account balance, validating phone numbers, and managing reseller sub-customer credits. Built with connection pooling, automatic retries, and a clean exception hierarchy.
Installation
pip install nextsms-python-sdk
Quick start
from nextsms import NextSMS
sms = NextSMS(username="YOUR_USERNAME", password="YOUR_PASSWORD")
# Check API health
print(sms.is_healthy()) # True
# Send a single SMS
resp = sms.send_sms(
sender_id="YOUR_SENDER_ID",
recipient="255712345678",
message="Hello from NextSMS SDK!",
)
print(resp.data["messages"][0]["messageId"])
# Check delivery status
status = sms.get_message_status("499303667522447963")
print(status.data["results"][0]["status"]["name"]) # DELIVERED
# Check account balance
bal = sms.get_balance()
print(bal.data["sms_balance"])
sms.close()
Use as a context manager to auto-close the HTTP session:
with NextSMS(username="YOUR_USERNAME", password="YOUR_PASSWORD") as sms:
sms.send_sms(sender_id="YOUR_SENDER_ID", recipient="255712345678", message="Hello!")
Features
Single SMS
resp = sms.send_sms(
sender_id="YOUR_SENDER_ID", # max 11 alphanumeric characters
recipient="255712345678", # or local format: "0712345678"
message="Your OTP is 1234",
callback_url="https://myapp.com/dlr", # optional delivery report webhook
schedule_time="2024-06-01T10:00:00Z", # optional scheduled delivery
)
Bulk SMS
resp = sms.send_bulk_sms(
sender_id="YOUR_SENDER_ID",
recipients=["255712345678", "255754711158", "0765000000"],
message="Hello everyone!",
)
Delivery status
status = sms.get_message_status(message_id="499303667522447963")
print(status.data["results"][0]["delivery"]) # DELIVERED / PENDING / FAILED
Account balance
bal = sms.get_balance()
print(bal.data["sms_balance"])
Phone number validation
result = sms.validate_number("255712345678")
Reseller — recharge sub-customer
resp = sms.recharge_customer(email="customer@example.com", smscount=5000)
Reseller — deduct sub-customer
resp = sms.deduct_customer(email="customer@example.com", smscount=2000)
Phone number formats
The SDK accepts both international (255712345678) and local Tanzanian (0712345678) formats. Numbers are normalised to 255XXXXXXXXX before being sent to the API.
Error handling
All exceptions inherit from NextSMSError:
from nextsms import (
NextSMS,
NextSMSAuthenticationError,
NextSMSInsufficientBalanceError,
NextSMSValidationError,
NextSMSRateLimitError,
NextSMSServerError,
NextSMSConnectionError,
)
try:
sms.send_sms(sender_id="YOUR_SENDER_ID", recipient="255712345678", message="Hi")
except NextSMSAuthenticationError:
print("Bad credentials")
except NextSMSInsufficientBalanceError:
print("Top up your account")
except NextSMSValidationError as e:
print(f"Invalid input: {e}")
Configuration
sms = NextSMS(
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
test_mode=False, # True → sandbox, no real SMS sent
timeout=30, # per-request timeout in seconds
max_retries=3, # retries on 429 / 5xx
pool_connections=10, # urllib3 connection pools
pool_maxsize=100, # max connections per pool
)
Response object
Every SDK method returns a NextSMSResponse:
resp.success # bool
resp.status_code # int (HTTP status)
resp.message # str
resp.data # dict (full API response body)
bool(resp) # True if success
Requirements
- Python 3.8+
requests >= 2.25.0
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nextsms_python_sdk-0.1.1.tar.gz.
File metadata
- Download URL: nextsms_python_sdk-0.1.1.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d47e782ada3e55f676b16fae3535b8751446b5c0528e58ed250ac0610bd7cdf9
|
|
| MD5 |
2ac8ccca718fd759bddb6b97bb198f2d
|
|
| BLAKE2b-256 |
2c090ba13d20b19c5421945dea0e19255e8508d4f6c3331abd455682edb7a71a
|
File details
Details for the file nextsms_python_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: nextsms_python_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84b36ef9acad98f5b94f68894cd164dfd5330aaf2e7e47986c11c52dbdee8e67
|
|
| MD5 |
ec51909b93f2c874542e4f3c2c01f044
|
|
| BLAKE2b-256 |
d672ae8351ab5eba0ba1e955cfd2404727eab152c55592a927fdc5a186ddd7c7
|