Skip to main content

Official Python SDK for EagleBirth API

Project description

EagleBirth Python SDK

Official Python SDK for the EagleBirth API - providing email, SMS, WhatsApp, OTP, QR codes, AI-powered image processing, and messaging webhooks.

Installation

pip install eaglebirth

Quick Start

from eaglebirth import EagleBirth

# Initialize the client with your API key
client = EagleBirth(api_key='eb_live_...')

# Send an email
client.email.send(
    email='user@example.com',
    subject='Welcome to Our Platform',
    message='Thank you for signing up!'
)

# Send an SMS
client.sms.send(
    phone_number='+1234567890',
    message='Your verification code is: 123456'
)

# Send a WhatsApp message
client.whatsapp.send(
    phone_number='+1234567890',
    message='Hello from EagleBirth!'
)

Features

  • Email Notifications - Send transactional emails
  • SMS Notifications - Send SMS to any phone number worldwide
  • WhatsApp Notifications - Send WhatsApp messages
  • OTP/Verification - Generate and validate one-time codes
  • QR Code Generation - Create customizable QR codes
  • Vision AI - Face detection, comparison, and OCR
  • Cloud Storage - File and directory management with privacy controls
  • User Management - Complete CRUD operations for managing application users
  • Messaging Webhooks - Register HTTPS endpoints to receive real-time reply notifications

Authentication

Get your API key from your EagleBirth Dashboard.

from eaglebirth import EagleBirth

# Test environment - automatically routes to sandbox.eaglebirth.com
client = EagleBirth(api_key='eb_test_...')

# Production environment - automatically routes to eaglebirth.com
client = EagleBirth(api_key='eb_live_...')

Environments

The SDK automatically routes requests to the correct environment based on your API key prefix:

  • Sandbox/Test (eb_test_...) - Routes to sandbox.eaglebirth.com. For development and testing. No charges, uses test data.
  • Production (eb_live_...) - Routes to eaglebirth.com. For live applications. Real charges apply.

No additional configuration needed - just use the appropriate API key and the SDK will automatically connect to the right server. You can create separate API keys for each environment from your dashboard.

Usage Examples

Email Notifications

# Basic email
result = client.email.send(
    email='user@example.com',
    subject='Welcome',
    message='Welcome to our platform!'
)

# Email with custom header and salutation
result = client.email.send(
    email='user@example.com',
    subject='Account Verification',
    message='Please verify your email address.',
    header='Welcome to EagleBirth!',
    salutation='Hello John,',
    reply_to='support@yourcompany.com'
)

SMS Notifications

# Send SMS
result = client.sms.send(
    phone_number='+1234567890',
    message='Your verification code is: 123456'
)

# Get SMS pricing
prices = client.sms.get_prices(phone_number='+1234567890')
print(f"Price: ${prices['data']['price']}")

WhatsApp Notifications

result = client.whatsapp.send(
    phone_number='+1234567890',
    message='Your order has been shipped!'
)

OTP/Verification Codes

# Send OTP via email
otp_result = client.otp.send(
    validation_type='email',
    email='user@example.com',
    code_length=6,
    timeout=300  # 5 minutes
)

code_id = otp_result['data']['code_id']

# Validate the OTP
validation = client.otp.validate(
    code_id=code_id,
    code='123456'
)

if validation['res'] == 'success':
    print('Code is valid!')

# Send OTP via SMS
otp_result = client.otp.send(
    validation_type='sms',
    phone_number='+1234567890'
)

# Send OTP via WhatsApp
otp_result = client.otp.send(
    validation_type='whatsapp',
    phone_number='+1234567890'
)

QR Code Generation

# Generate a simple QR code
qr_result = client.qr.generate(
    text='https://example.com'
)

# Generate a styled QR code with logo
with open('logo.png', 'rb') as logo_file:
    qr_result = client.qr.generate(
        text='https://example.com',
        image=logo_file,
        color='#000000',
        background_color='#FFFFFF'
    )

print(f"QR Code URL: {qr_result['data']['qr_code_url']}")

Vision AI

# Extract face details
with open('photo.jpg', 'rb') as image_file:
    result = client.vision.extract_face_details(image=image_file)

    for face in result['data']['faces']:
        print(f"Age: {face['age']}")
        print(f"Gender: {face['gender']}")
        print(f"Emotions: {face['emotions']}")

# Compare two faces
with open('photo1.jpg', 'rb') as img1, open('photo2.jpg', 'rb') as img2:
    result = client.vision.compare_faces(image1=img1, image2=img2)

    print(f"Similarity: {result['data']['similarity']}%")

# Extract text from image (OCR)
with open('document.jpg', 'rb') as image_file:
    result = client.vision.extract_text(image=image_file)

    print(f"Extracted text: {result['data']['text']}")

Cloud Storage

# Create a directory
client.storage.directory.create(
    path='/photos/vacation/',
    private='yes',  # 'yes' or 'no'
    directory_password='secret123'  # Optional password protection
)

# Upload a file
with open('document.pdf', 'rb') as file:
    result = client.storage.file.upload(
        file=file,
        path='/documents/report.pdf',
        private='no',
        file_password='filepass123'  # Optional file password
    )

# List directory contents
contents = client.storage.directory.list_content(
    path='/photos/vacation/',
    directory_password='secret123'  # If directory is password protected
)

for item in contents['data']['directories']:
    print(f"Directory: {item['path']}")

for item in contents['data']['files']:
    print(f"File: {item['filename']} - {item['size']} bytes")

# Retrieve a file
file_data = client.storage.file.retrieve(
    path='/documents/report.pdf',
    password='filepass123'  # If file is password protected
)

# Update file privacy
client.storage.file.update_privacy(
    path='/documents/report.pdf',
    private='yes',
    refresh_token='yes'  # Generate new access token
)

# Update directory password
client.storage.directory.update_password(
    path='/photos/vacation/',
    directory_password='newsecret456'
)

# Delete a file
client.storage.file.delete(path='/documents/old_report.pdf')

# Delete a directory
client.storage.directory.delete(path='/photos/old_vacation/')

User Management

Manage your application's end users. All operations use your API key (no additional authentication needed).

# Note: The client is already authenticated with your API key.
# User Management operates on your app's users.

```python
# Create a new user
user = client.users.create(
    email='newuser@example.com',
    username='johndoe',
    first_name='John',
    last_name='Doe',
    password='securepassword123',
    phone='+1234567890'
)
print(f"User created with ID: {user['data']['user_id']}")

# Check if a user exists
exists = client.users.exists(username='johndoe')
if exists['data']['exists']:
    print('User exists!')

# Get user details
user_details = client.users.get(username='johndoe')
print(f"User email: {user_details['data']['email']}")

# List all users (paginated)
users = client.users.list(page=1, limit=10)
for user in users['data']['users']:
    print(f"{user['username']} - {user['email']}")

# Update user details
client.users.update(
    username='johndoe',
    email='newemail@example.com',
    first_name='Jonathan'
)

# Sign in a user (classic username/password)
signin_result = client.users.sign_in(
    username='johndoe',
    password='securepassword123'
)
access_token = signin_result['data']['access']
refresh_token = signin_result['data']['refresh']

# Sign in with third-party auth (e.g., Google, Facebook)
signin_result = client.users.sign_in(
    authentication_type='google',
    authentication_type_id='google_user_id_12345'
)

# OAuth PKCE Flow with EagleBirth Auth UI
# After user authenticates via EagleBirth Auth UI, you'll receive a 'code'
# Exchange the code for user session and data
user_session = client.users.exchange_code_for_user(
    code='authorization_code_from_redirect',
    code_verifier='your_code_verifier'
)
print(f"User email: {user_session['data']['email']}")
print(f"Access token: {user_session['data']['access']}")
print(f"User ID: {user_session['data']['user_id']}")

# Verify if a session token is valid
is_valid = client.users.verify_token(token=access_token)

# Refresh user session token
new_tokens = client.users.refresh_token(refresh=refresh_token)

# Update user password (admin action)
client.users.update_password(
    username='johndoe',
    password='newpassword456'
)

# Send verification code for password reset
code_response = client.users.send_verification_code(username='johndoe')
code_id = code_response['data']['code_id']

# Validate the verification code
client.users.validate_verification_code(
    code='123456',
    code_id=code_id
)

# Reset password using verification code (self-service)
client.users.reset_password(
    code='123456',
    code_id=code_id,
    password='brandnewpassword789'
)

# Update user status
client.users.update_status(
    username='johndoe',
    status='suspended'  # Options: 'active', 'suspended', 'pending', 'deleted'
)

# Update user type/role
client.users.update_type(
    username='johndoe',
    user_type='premium'
)

# Reactivate a suspended user
client.users.reactivate(username='johndoe')

# Sign out a user (invalidate refresh token)
client.users.sign_out(refresh_token=refresh_token)

# Delete a user
client.users.delete(username='johndoe')

OAuth PKCE Flow (EagleBirth Auth UI)

When users authenticate through EagleBirth's hosted Auth UI, you'll receive an authorization code that needs to be exchanged for user data and session tokens.

# Step 1: Redirect users to EagleBirth Auth UI with PKCE parameters
# (You generate code_verifier and code_challenge in your app)

# Step 2: After successful authentication, EagleBirth redirects back to your app
# with a 'code' parameter in the URL

# Step 3: Exchange the code for user session data
user_session = client.users.exchange_code_for_user(
    code='code_from_url_redirect',
    code_verifier='your_original_code_verifier'
)

# Access user information
user_data = user_session['data']
print(f"Email: {user_data['email']}")
print(f"Username: {user_data['username']}")
print(f"Name: {user_data['first_name']} {user_data['last_name']}")
print(f"Phone: {user_data['phone']}")
print(f"User ID: {user_data['user_id']}")

# Access session tokens
access_token = user_data['access']
refresh_token = user_data['refresh']

# Use the access token for authenticated requests
# Store the refresh token for renewing the session

Messaging Webhooks

Register HTTPS endpoints to receive real-time notifications whenever a recipient replies to a message you sent through EagleBirth (SMS, WhatsApp, or email).

Supported events:

  • message.reply — any channel (catch-all)
  • message.reply.whatsapp — WhatsApp replies only
  • message.reply.sms — SMS replies only
  • message.reply.email — email replies only
# Register a new webhook
result = client.webhooks.create(
    url='https://yourapp.com/webhooks/eaglebirth',
    event='message.reply'
)
# ⚠ Save the secret — it is shown only once
secret = result['data']['secret']
webhook_id = result['data']['id']
print(f"Webhook created: {webhook_id}")
print(f"Save your secret: {secret}")

# List all registered webhooks
hooks = client.webhooks.list()
for hook in hooks['data']:
    print(f"{hook['id']}{hook['event']}{hook['url']} (active={hook['is_active']})")

# Send a test delivery to confirm your endpoint is reachable
test_result = client.webhooks.test(webhook_id)
print(f"Your server responded with HTTP {test_result['data']['http_status']}")

# Pause deliveries temporarily
client.webhooks.update(webhook_id, is_active=False)

# Change the endpoint URL
client.webhooks.update(webhook_id, url='https://yourapp.com/new-path')

# Resume deliveries
client.webhooks.update(webhook_id, is_active=True)

# Permanently delete a webhook
client.webhooks.delete(webhook_id)

Verifying Webhook Signatures

Every delivery includes an X-EagleBirth-Signature header containing an HMAC-SHA256 signature. Always verify it before processing the payload.

# Flask example
from flask import Flask, request, abort
from eaglebirth import verify_webhook_signature
import os

app = Flask(__name__)

@app.route('/webhooks/eaglebirth', methods=['POST'])
def handle_webhook():
    body = request.get_data()  # raw bytes — do not parse JSON first
    secret = os.environ['EAGLEBIRTH_WEBHOOK_SECRET']
    signature = request.headers.get('X-EagleBirth-Signature', '')

    if not verify_webhook_signature(body, secret, signature):
        abort(400, 'Invalid signature')

    payload = request.get_json()
    event = payload['event']
    # e.g. 'message.reply.sms', 'message.reply.whatsapp', 'message.reply.email'

    if event == 'message.reply.sms':
        print(f"SMS reply from {payload['data']['from']}: {payload['data']['body']}")
    elif event == 'message.reply.whatsapp':
        print(f"WhatsApp reply from {payload['data']['from']}: {payload['data']['body']}")
    elif event == 'message.reply.email':
        print(f"Email reply from {payload['data']['from']}: {payload['data']['subject']}")

    return '', 200
# Django example
import hmac, os
from django.http import HttpResponse, HttpResponseBadRequest
from django.views.decorators.csrf import csrf_exempt
from eaglebirth import verify_webhook_signature
import json

@csrf_exempt
def webhook_handler(request):
    if request.method != 'POST':
        return HttpResponse(status=405)

    body = request.body  # raw bytes
    secret = os.environ['EAGLEBIRTH_WEBHOOK_SECRET']
    signature = request.headers.get('X-EagleBirth-Signature', '')

    if not verify_webhook_signature(body, secret, signature):
        return HttpResponseBadRequest('Invalid signature')

    payload = json.loads(body)
    # handle payload['event'] ...
    return HttpResponse(status=200)

Webhook payload shape:

{
  "event": "message.reply.sms",
  "test": false,
  "data": {
    "from": "+1234567890",
    "to": "+0987654321",
    "body": "Thanks!",
    "channel": "sms",
    "sub_channel": "direct",
    "message_id": "SM_abc123",
    "original_message_id": "eb_msg_xyz",
    "timestamp": "2024-01-15T10:30:00Z"
  }
}

Error Handling

from eaglebirth import EagleBirth, AuthenticationError, APIError, RateLimitError

client = EagleBirth(api_key='eb_live_...')

try:
    result = client.email.send(
        email='user@example.com',
        subject='Test',
        message='Test message'
    )
except AuthenticationError:
    print("Invalid API key")
except RateLimitError:
    print("Rate limit exceeded - please slow down")
except APIError as e:
    print(f"API error: {e}")
    print(f"Status code: {e.status_code}")

API Scopes

API keys have different scopes that determine which endpoints they can access:

  • full - Access to all endpoints
  • messaging - Email, SMS, WhatsApp, OTP only
  • storage - Cloud storage only
  • qr - QR code generation only
  • image_processing - Vision AI only
  • read - Read-only access

Support

License

MIT License - see LICENSE file for details

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

eaglebirth-1.2.0.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

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

eaglebirth-1.2.0-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

Details for the file eaglebirth-1.2.0.tar.gz.

File metadata

  • Download URL: eaglebirth-1.2.0.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for eaglebirth-1.2.0.tar.gz
Algorithm Hash digest
SHA256 281e4e7606de018c5283835157444c6f736039d92e1c49b01ddf7008167ce9e4
MD5 6f76477aec444780ec4da02211d06c28
BLAKE2b-256 2be3cd20df62f16544a9f73def00458dfab5b4484c1b74abdeb73660c95a7560

See more details on using hashes here.

File details

Details for the file eaglebirth-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: eaglebirth-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for eaglebirth-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1de9db6d39b047a24cd0869eae2a14514df473109ce60259bd802fadf4778b58
MD5 6a10abad803e3a4096d437689b437dac
BLAKE2b-256 8448184538a7dfc10a8dc9512d0728f72b5d56c17c3a1392c945e35a42642e59

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