Skip to main content

Python client library for Sinkron - Give your agent permanent email addresses through Clawhub

Project description

Sinkron Python Library

Python library and CLI for Sinkron API - Give your agent permanent email addresses through Clawhub.

Features

  • Full API Support: Access all Sinkron API endpoints
  • CLI Interface: Easy-to-use command line tool
  • Configuration Management: Save tokens and API URLs
  • Input Validation: Robust validation for all inputs
  • Error Handling: Detailed error messages
  • Modular Design: Use as a library or CLI

Installation

From source

cd library
pip install -e .

From PyPI (when published)

pip install sinkron

Quick Start

Using CLI

# Register a new agent
sinkron register --username john --name "John Doe" --save-token

# Check your inbox
sinkron inbox

# Check a specific page
sinkron inbox --page 2

# Search messages
sinkron inbox --search "verification"

# Get a specific message
sinkron message 123

# Check if email exists
sinkron check john@sinkron.id

# Delete messages
sinkron delete-messages --ids 1,2,3

# Delete entire inbox
sinkron delete-inbox

# Get agent info
sinkron agent john

# Config management
sinkron config --show
sinkron config --token YOUR_TOKEN
sinkron config --api-url https://api.sinkron.id

Using as Library

from sinkron import SinkronClient

# Initialize client
client = SinkronClient()

# Register new agent
result = client.register("john", "John Doe")
print(f"Token: {result.token}")

# Set token for authenticated requests
client.token = result.token

# Get inbox
inbox = client.get_inbox(page=1)
print(f"Total messages: {inbox.total}")

# Get specific message
message = client.get_message(123)
print(f"Subject: {message.subject}")

# Check email exists
check = client.check_email("john@sinkron.id")
print(f"Exists: {check.exists}")

Configuration

Environment Variables

Config File

The CLI stores configuration in ~/.sinkron.json:

{
  "api_url": "https://api.sinkron.id",
  "token": "your_token_here"
}

CLI Options

All CLI commands accept these global options:

  • --api-url URL - Override API URL
  • --token TOKEN - Override authentication token
  • --version - Show version

Local Development

For local development, you can use the Cloudflare Workers local server:

# Start local development server
cd /home/zororaka/Project/sinkron/be
wrangler dev

Then use the local URL in your commands:

# Register using local server
sinkron register --username john --name "John Doe" --save-token --api-url http://localhost:8787

# Or save the local URL to config
sinkron config --api-url http://localhost:8787
sinkron register --username john --name "John Doe" --save-token

Setting Custom Domain

If you have a custom domain configured:

sinkron config --api-url https://your-custom-domain.com

API Reference

Client Methods

Method Description Auth Required
health_check() Check API health No
register(username, name) Register new agent No
get_agent_info(username) Get agent info Yes
get_inbox(page, search) Get inbox messages Yes
delete_inbox() Delete entire inbox Yes
get_message(id) Get message by ID Yes
delete_messages(ids) Delete messages Yes
check_email(address) Check email exists No

CLI Commands

sinkron health                              # Check API health
sinkron register --username USER --name NAME # Register new agent
sinkron inbox [--page N] [--search KEYWORD] # Get inbox
sinkron check ADDRESS                       # Check email exists
sinkron message ID                          # Get message
sinkron delete-messages --ids 1,2,3         # Delete messages
sinkron delete-inbox [--force]              # Delete inbox
sinkron agent USERNAME                      # Get agent info
sinkron config --show                       # Show config
sinkron config --token TOKEN                # Set token
sinkron config --clear-token                # Clear token

Error Handling

from sinkron import SinkronClient
from sinkron.exceptions import (
    SinkronError,
    SinkronAuthError,
    SinkronNotFoundError,
    SinkronRateLimitError,
    SinkronValidationError,
)

client = SinkronClient()

try:
    result = client.register("john", "John Doe")
except SinkronValidationError as e:
    print(f"Validation error: {e}")
except SinkronAuthError as e:
    print(f"Auth error: {e}")
except SinkronRateLimitError as e:
    print(f"Rate limited: {e}")
except SinkronError as e:
    print(f"API error: {e}")

Development

# Install development dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Format code
black sinkron/

# Lint
flake8 sinkron/

License

MIT License - see LICENSE file for details.

Links

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

sinkron-1.0.1.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

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

sinkron-1.0.1-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file sinkron-1.0.1.tar.gz.

File metadata

  • Download URL: sinkron-1.0.1.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sinkron-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f2d5ad3fbd0d78235bf04a4d2e5b6e294741175f820371989df254bd99742fed
MD5 6ceec08ff34fe2fc2aac97f0cac07c2d
BLAKE2b-256 91e4b6924caf674fee45e448b91b1c06ad3fd8e978f9eb5e098da3256dc487d6

See more details on using hashes here.

File details

Details for the file sinkron-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: sinkron-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 13.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sinkron-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d30301da05e8f23a46da24f88b886a42702e2f4df66cb00adf93121d74a03255
MD5 d2592e775e3933680ad2a1c505f80e29
BLAKE2b-256 ee44eb6d02154f994b3532fde4e32ba7b980756cf470d3c468ee30ec03fe4dc9

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