Skip to main content

A lightweight Python package for the Textbelt SMS API

Project description

textbelt-utils

A lightweight Python package for interacting with the Textbelt SMS API. Send SMS messages, check delivery status, and handle webhook responses with a clean, type-hinted interface.

Features

  • 🚀 Simple, intuitive API
  • 📝 Type hints and dataclasses for better IDE support
  • ✅ Webhook verification
  • 🧪 Test mode support
  • 🏢 Custom sender name support
  • 0️⃣ Zero external dependencies beyond requests

Installation

pip install textbelt-utils

Quick Start

from textbelt_utils import TextbeltClient, SMSRequest

# Initialize client
client = TextbeltClient(api_key="your_api_key")

# Send an SMS
request = SMSRequest(
    phone="+1234567890",
    message="Hello from textbelt-utils!",
    key="your_api_key"
)

response = client.send_sms(request)
print(f"Message sent! ID: {response.text_id}")

Features

Send SMS

from textbelt_utils import TextbeltClient, SMSRequest

client = TextbeltClient(api_key="your_api_key")

# Basic SMS
request = SMSRequest(
    phone="+1234567890",
    message="Hello!",
    key="your_api_key"
)

# SMS with webhook for replies
request_with_webhook = SMSRequest(
    phone="+1234567890",
    message="Reply to this message!",
    key="your_api_key",
    reply_webhook_url="https://your-site.com/webhook",
    webhook_data="custom_data"
)

# SMS with custom sender name
request_with_sender = SMSRequest(
    phone="+1234567890",
    message="Message from your company!",
    key="your_api_key",
    sender="MyCompany"  # Set a custom sender name for this message
)

response = client.send_sms(request)

Sender Name

You can set a sender name for your SMS messages in two ways:

  1. Account-wide: Set a default sender name in your Textbelt account settings at https://textbelt.com/account
  2. Per-message: Set the sender parameter in your SMSRequest

The sender name is used for compliance purposes and helps recipients identify who sent the message. If you don't specify a sender name, Textbelt will automatically append your default sender name to the message (unless it already appears in the message content).

# Example with custom sender name
request = SMSRequest(
    phone="+1234567890",
    message="Important update!",
    key="your_api_key",
    sender="MyCompany"  # This overrides your account's default sender name
)

Note: The sender name is used strictly for compliance purposes and does not override the "From" number for the SMS sender.

Check Message Status

status = client.check_status("text_id")
print(f"Message status: {status.status}")  # DELIVERED, SENT, SENDING, etc.

Check Quota

quota = client.check_quota()
print(f"Remaining messages: {quota.quota_remaining}")

Test Mode

# Send a test message (doesn't use quota)
response = client.send_test(request)

Webhook Verification

from textbelt_utils.utils import verify_webhook

is_valid = verify_webhook(
    api_key="your_api_key",
    timestamp="webhook_timestamp",
    signature="webhook_signature",
    payload="webhook_payload"
)

Error Handling

The package provides specific exceptions for different error cases:

from textbelt_utils.exceptions import (
    QuotaExceededError,
    InvalidRequestError,
    WebhookVerificationError,
    APIError
)

try:
    response = client.send_sms(request)
except QuotaExceededError:
    print("Out of quota!")
except InvalidRequestError as e:
    print(f"Invalid request: {e}")
except WebhookVerificationError:
    print("Webhook verification failed")
except APIError as e:
    print(f"API error: {e}")

Asynchronous Usage

from textbelt_utils import AsyncTextbeltClient, SMSRequest
import asyncio

async def main():
    async with AsyncTextbeltClient(api_key="your_api_key") as client:
        # Send SMS
        request = SMSRequest(
            phone="+1234567890",
            message="Async hello!",
            key="your_api_key"
        )
        response = await client.send_sms(request)
        
        # Check status
        status = await client.check_status(response.text_id)
        
        # Check quota
        quota = await client.check_quota()

if __name__ == "__main__":
    asyncio.run(main())

Mixed Sync/Async Usage

from textbelt_utils import TextbeltClient, AsyncTextbeltClient, SMSRequest

# Synchronous
sync_client = TextbeltClient(api_key="your_api_key")
sync_response = sync_client.send_sms(request)

# Asynchronous
async def send_async():
    async with AsyncTextbeltClient(api_key="your_api_key") as client:
        async_response = await client.send_sms(request)

Development

Running Tests

poetry run python -m unittest discover tests

Testing Your Integration

Using the Test Script

The package includes a test_send.py script to help you verify your Textbelt integration. To use it:

  1. Set up your environment variables:
export TEXTBELT_API_KEY=your_api_key_here
export TEXTBELT_TEST_PHONE=your_phone_number_here  # E.164 format, e.g., +1234567890
  1. Run the test script:
poetry run python test_send.py

The script will:

  • Send a test message (using test mode, won't use your quota)
  • Display the message ID and delivery status
  • Show your remaining quota

Security Note

  • Never commit test_send.py with actual phone numbers or API keys
  • Always use environment variables for sensitive data
  • Add test_send.py to your .gitignore if you modify it with any sensitive data

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

TODO

High Priority

  • Add comprehensive webhook support
    • Add webhook handler/router functionality
    • Add webhook signature verification middleware
    • Add example webhook handlers for common use cases
    • Document webhook payload structure and events
    • Add webhook testing utilities

Medium Priority

  • Add retry mechanism for failed API calls
  • Add rate limiting support
  • Add logging configuration options
  • Add support for bulk SMS sending
  • Add support for scheduling messages

Low Priority

  • Add support for message templates
  • Add support for contact lists/groups
  • Add message history tracking
  • Add support for delivery reports

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

textbelt_utils-0.1.3.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

textbelt_utils-0.1.3-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file textbelt_utils-0.1.3.tar.gz.

File metadata

  • Download URL: textbelt_utils-0.1.3.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.1 Darwin/24.1.0

File hashes

Hashes for textbelt_utils-0.1.3.tar.gz
Algorithm Hash digest
SHA256 643a04d7d30459db73c36300777257dbaa832cdc108e7d3d96f9e75c7446212f
MD5 774abaf05a6c2d661709892d5764c428
BLAKE2b-256 ba4d0dea5b5d569707f0f2168ab6488b8dd2b08e4e02634d988adbe659d5d583

See more details on using hashes here.

File details

Details for the file textbelt_utils-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: textbelt_utils-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.1 Darwin/24.1.0

File hashes

Hashes for textbelt_utils-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3bf891cdb906512571356463d1daa5d52e1a9548cfcbcb339e799f76e8034668
MD5 9e31baead210fd39f8eed086dab9d892
BLAKE2b-256 cdd6bbb8bb451342c81213641113dfb3822ec471869368660187ce45707860a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page