A modern Python client for seamless integration with the SMS Gateway for Android API. Send SMS messages programmatically through your Android devices with this powerful yet simple-to-use library.
- Dual Client Support: Choose between synchronous (
APIClient
) and asynchronous (AsyncAPIClient
) interfaces - End-to-End Encryption: Optional message encryption using AES-CBC-256
- Multiple HTTP Backends: Supports
requests
,aiohttp
, andhttpx
- Webhook Management: Create, read, and delete webhooks
- Customizable Base URL: Point to different API endpoints
- Type Hinting: Fully typed for better development experience
Optional:
- 🔒 pycryptodome - For end-to-end encryption support
Install the base package:
pip install android_sms_gateway
Install with your preferred HTTP client:
# Choose one:
pip install android_sms_gateway[requests]
pip install android_sms_gateway[aiohttp]
pip install android_sms_gateway[httpx]
For encrypted messaging:
pip install android_sms_gateway[encryption]
import asyncio
import os
from android_sms_gateway import client, domain, Encryptor
login = os.getenv("ANDROID_SMS_GATEWAY_LOGIN")
password = os.getenv("ANDROID_SMS_GATEWAY_PASSWORD")
# for end-to-end encryption, see https://docs.sms-gate.app/privacy/encryption/
# encryptor = Encryptor('passphrase')
message = domain.Message(
"Your message text here.",
["+1234567890"],
)
def sync_client():
with client.APIClient(
login,
password,
# encryptor=encryptor,
) as c:
state = c.send(message)
print(state)
state = c.get_state(state.id)
print(state)
async def async_client():
async with client.AsyncAPIClient(
login,
password,
# encryptor=encryptor,
) as c:
state = await c.send(message)
print(state)
state = await c.get_state(state.id)
print(state)
print("Sync client")
sync_client()
print("\nAsync client")
asyncio.run(async_client())
There are two client classes: APIClient
and AsyncAPIClient
. The
APIClient
is synchronous and the AsyncAPIClient
is asynchronous. Both
implement the same interface and can be used as context managers.
Both clients support the following initialization parameters:
Argument | Description | Default |
---|---|---|
login |
Username | Required |
password |
Password | Required |
base_url |
API base URL | "https://api.sms-gate.app/3rdparty/v1" |
encryptor |
Encryptor instance | None |
http |
Custom HTTP client | Auto-detected |
Method | Description | Returns |
---|---|---|
send(self, message: domain.Message) |
Send a message | domain.MessageState |
get_state(self, _id: str) |
Get message state | domain.MessageState |
create_webhook(self, webhook: domain.Webhook) |
Create a new webhook | domain.Webhook |
get_webhooks(self) |
Get all webhooks | List[domain.Webhook] |
delete_webhook(self, _id: str) |
Delete a webhook | None |
class Message:
message: str
phone_numbers: t.List[str]
with_delivery_report: bool = True
is_encrypted: bool = False
id: t.Optional[str] = None
ttl: t.Optional[int] = None
sim_number: t.Optional[int] = None
class MessageState:
id: str
state: ProcessState
recipients: t.List[RecipientState]
is_hashed: bool
is_encrypted: bool
class Webhook:
id: t.Optional[str]
url: str
event: WebhookEvent
For more details, see the domain.py
.
from android_sms_gateway import client, Encryptor
# Initialize with your secret passphrase
encryptor = Encryptor("my-secret-passphrase")
# Use in client initialization
client.APIClient(login, password, encryptor=encryptor)
The library automatically detects installed HTTP clients. Here's the priority:
Client | Sync | Async |
---|---|---|
aiohttp | ❌ | 1️⃣ |
requests | 1️⃣ | ❌ |
httpx | 2️⃣ | 2️⃣ |
To use a specific client:
# Force httpx sync client
client.APIClient(..., http=http.HttpxHttpClient())
You can also implement your own HTTP client that conforms to the http.HttpClient
or ahttp.HttpClient
protocol.
- Always store credentials in environment variables
- Never expose credentials in client-side code
- Use HTTPS for all production communications
For complete API documentation including all available methods, request/response schemas, and error codes, visit: 📘 Official API Documentation
We welcome contributions! Here's how to help:
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
git clone https://github.com/android-sms-gateway/client-py.git
cd client-py
pipenv install --dev --categories encryption,requests
pipenv shell
Distributed under the Apache 2.0 License. See LICENSE for more information.
Note: Android is a trademark of Google LLC. This project is not affiliated with or endorsed by Google.