Skip to main content

Python SDK for the SignalHouse API

Project description

SignalHouse Python SDK

Python SDK for the SignalHouse API — manage SMS/MMS messaging, phone numbers, 10DLC brands & campaigns, billing, and more.

Installation

pip install signalhouse

Or install from source:

pip install -e .

Quick Start

from signalhouse import SignalHouseSDK

# Initialize the SDK
sdk = SignalHouseSDK(
    api_key="your-api-key",
    base_url="https://v2.signalhouse.io",
)

# Send an SMS
response = sdk.messages.send_sms(
    sender_phone_number="15551234567",
    recipient_phone_numbers="15559876543",
    message_body="Hello from SignalHouse!",
)

if response["success"]:
    print("Message sent!", response["data"])
else:
    print("Error:", response["error"])

Authentication

All methods accept an optional token parameter to override the default API key per-request:

response = sdk.billing.get_wallet("G12345678", token="user-jwt-token")

Domains

The SDK is organized into domain modules matching the SignalHouse API:

Domain Description
sdk.auth Login, password reset, auth history
sdk.billing Wallets, payment methods, funds, invoices, fees
sdk.brands 10DLC brand registration and management
sdk.campaigns 10DLC campaign management
sdk.groups Group management
sdk.landings Landing page management (with file uploads)
sdk.messages Send SMS/MMS/Group MMS, message logs, analytics
sdk.notifications Notification management
sdk.numbers Phone number purchase, assignment, transfer, lookup
sdk.shortlinks URL shortlink operations
sdk.subgroups Subgroup management
sdk.subscriptions Subscription management
sdk.users User and service user management
sdk.webhooks Webhook management

Admin Methods

Some domains have admin-only methods accessible via the .admin sub-object. Enable them by passing enable_admin=True:

sdk = SignalHouseSDK(
    api_key="your-api-key",
    base_url="https://v2.signalhouse.io",
    enable_admin=True,
)

# Admin-only: approve a campaign
response = sdk.campaigns.admin.approve_campaign("campaign-id", token="admin-token")

# Admin-only: list all groups
response = sdk.groups.admin.get_groups(page=1, limit=20, token="admin-token")

Domains with admin sub-objects: campaigns, groups, subscriptions, users.

Response Format

All methods return a standardized dictionary:

Success:

{"success": True, "data": {...}, "status": 200}

Error:

{"success": False, "error": "Error message", "status": 400}

File Uploads

The landings and messages domains support multipart file uploads:

# Create a landing page with a logo
with open("logo.png", "rb") as f:
    response = sdk.landings.create_landing(
        landing_data={
            "brandId": "brand-id",
            "description": "My landing page",
            "primaryBackgroundColor": "#FFFFFF",
            "secondaryBackgroundColor": "#F0F0F0",
            "primaryTextColor": "#000000",
            "secondaryTextColor": "#333333",
        },
        file=("logo.png", f, "image/png"),
    )

# Send an MMS with images
with open("photo.jpg", "rb") as img:
    response = sdk.messages.send_mms(
        sender_phone_number="15551234567",
        recipient_phone_numbers=["15559876543"],
        message_body="Check this out!",
        images=[("photo.jpg", img, "image/jpeg")],
    )

Error Handling

from signalhouse import SignalHouseSDK, SignalHouseValidationError

sdk = SignalHouseSDK(api_key="your-key", base_url="https://v2.signalhouse.io")

try:
    # This will raise SignalHouseValidationError because group_id is required
    sdk.billing.get_wallet("")
except SignalHouseValidationError as e:
    print(f"Validation error: {e.message}")  # "Missing required parameter: groupId"

Requirements

  • Python 3.10+
  • requests >= 2.28.0

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

signalhouse-1.0.8.tar.gz (26.5 kB view details)

Uploaded Source

Built Distribution

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

signalhouse-1.0.8-py3-none-any.whl (39.7 kB view details)

Uploaded Python 3

File details

Details for the file signalhouse-1.0.8.tar.gz.

File metadata

  • Download URL: signalhouse-1.0.8.tar.gz
  • Upload date:
  • Size: 26.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for signalhouse-1.0.8.tar.gz
Algorithm Hash digest
SHA256 1466a9a121d1c092d9cbab0d4c75ed8dffef4921437c855ac9b45150754c99fa
MD5 f8c4a459ad2df59df469491187cb91bb
BLAKE2b-256 c01b99d70aa35a6d80c9de52aa11bd9bd0ec37070e61be4238637149025ab261

See more details on using hashes here.

File details

Details for the file signalhouse-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: signalhouse-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for signalhouse-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 903bdd8c9ed4b673134ff10affe978d23cbd169cf5a3fbeb4d0d8a38906b854e
MD5 a96ecf75473ebf4cf874652175f7f86b
BLAKE2b-256 276818ff1c4f0477b11630b808aa67b698b9bab0e3f022314233bb950ac0e637

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