Skip to main content

Official Python SDK for EngageLab OTP — send, verify, and parse webhook callbacks

Project description

engagelab-otp · Python

Official Python SDK for EngageLab OTP.
Zero dependencies. Python 3.8+.

Install

pip install engagelab-otp

Quick start

import os
from engagelab_otp import OTPClient

otp = OTPClient(
    os.environ["ENGAGELAB_DEV_KEY"],
    os.environ["ENGAGELAB_DEV_SECRET"],
)

# Platform-generated OTP — easiest path
result = otp.send("+6591234567", "your-template-id", {"name": "Alice"}, language="en")
check  = otp.verify(result["message_id"], user_typed_code)
if check["verified"]:
    ...

Two send modes

Mode Method When to use
Platform-generated otp.send() EngageLab generates and stores the code. You only call verify() later.
Caller-generated otp.send_custom() You generate the code yourself. EngageLab is just the carrier.
# Platform-generated
r = otp.send("+6591234567", "tpl-id", {"name": "Alice"}, language="en")
v = otp.verify(r["message_id"], "123456")

# Caller-generated
otp.send_custom("+6591234567", "custom-tpl", {"code": "482910", "name": "Alice"})

Webhook callbacks

EngageLab signs callbacks with X-CALLBACK-ID (HMAC-SHA256). The SDK verifies signatures and parses events for you.

Whitelist source IPs in your firewall: 119.8.170.74, 114.119.180.30

from flask import Flask
from engagelab_otp import WebhookVerifier, MessageStatusEvent

app = Flask(__name__)

verifier = WebhookVerifier(
    username=os.environ["ENGAGELAB_WEBHOOK_USERNAME"],
    secret=os.environ["ENGAGELAB_WEBHOOK_SECRET"],
)

def handle(events):
    for e in events:
        if not isinstance(e, MessageStatusEvent):
            continue
        if not e.is_terminal:
            continue   # mid-flight, wait
        if e.status == "delivered":
            mark_delivered(e.message_id)
        elif e.status == "verified":
            mark_verified(e.message_id)

app.add_url_rule(
    "/webhook",
    "engagelab_webhook",
    verifier.flask_view(handle),
    methods=["POST"],
)

Event types

parse_events() returns instances of four dataclasses:

Class When Key fields
MessageStatusEvent per-message lifecycle message_id, status, is_terminal, current_send_channel, error_code
NotificationEvent account-level alert event, data
UplinkEvent inbound user reply data["from"], data["body"]
SystemEvent console action audit event, data

Message status enum

plan · target_valid · target_invalid
sent · sent_failed
delivered · delivered_failed
verified · verified_failed · verified_timeout

is_terminal == True for: delivered, delivered_failed, sent_failed, verified*, target_invalid.

Error handling

from engagelab_otp import EngagelabError

try:
    otp.send("+6591234567", "tpl", {})
except EngagelabError as e:
    if e.retryable:
        # HTTP 429/5xx, or API codes 1000/5001/5016
        # → exponential backoff
        ...
    else:
        # Permanent failure — fix call or notify user
        print(e.code, e.http_status, str(e))

Examples

See examples/ for runnable code:

  • 01_send_and_verify.py — platform-generated OTP, full flow
  • 02_send_custom.py — caller-generated code, single + bulk
  • 03_webhook_flask.py — receive callbacks via Flask
  • 04_error_handling.py — retry strategy and error categorization

Run tests

python tests/test_sdk.py

License

MIT

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

engagelab_otp-1.0.0.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

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

engagelab_otp-1.0.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file engagelab_otp-1.0.0.tar.gz.

File metadata

  • Download URL: engagelab_otp-1.0.0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for engagelab_otp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7fa5d6852be91c93daf451401fb0c90058ce8e8584d5c7153813b3c338c7fe02
MD5 a6596d89ca872e8aca1bb57f614f01d9
BLAKE2b-256 723aade8611d1d61000925d5ca6ec43fe6fd6cf0e691ce2b160b74deaf8296b2

See more details on using hashes here.

File details

Details for the file engagelab_otp-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: engagelab_otp-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for engagelab_otp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ac78c143c219e5d4b179a5bc9cbe5db745eb4115ba2dfd3c46c186382417cbe0
MD5 8dc375eca255db8d1257a4deb269a4c1
BLAKE2b-256 3f799f29f58aed61ee8b93ed0905be1d16a0bcfe136debeba2e011580ee6ad16

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