Skip to main content

Managed email identities for AI agents — the Python client for Sente (import sente).

Project description

sente-sdk

Managed email identities for AI agents — the Python client for Sente. Give your agent a real, reusable email address it owns: send, receive, and react to mail.

Dependency-free (stdlib only). The PyPI distribution is sente-sdk; the import is sente.

pip install sente-sdk
from sente import Sente

sente = Sente(api_key="sk_sente_...")              # get a key with the `sente` CLI: `sente login`

idt = sente.identities.create(name="support-bot")  # -> support-bot@agents.sente.run
sente.messages.send(idt.id, to="user@example.com", subject="hi", text="from your agent")

# React to inbound mail (a long-running consumer; for production prefer a webhook):
for msg in sente.messages.stream(idt.id):
    if msg.direction != "outbound":
        body = (msg.parsed or {}).get("text", "")
        # ... handle msg.from_addr / msg.subject / body

Waiting for a verification email (the agent signed up somewhere with idt.email)? Stamp since before triggering the action, then block for the extracted code or link:

from datetime import datetime, timezone

since = datetime.now(timezone.utc).isoformat()
# ... trigger the app's "send code" action ...
r = sente.messages.wait_for_otp(idt.id, since=since, timeout=60)  # -> OtpResult(code, message) | None
if r:
    print(r.code)  # magic links: wait_for_magic_link(...) -> MagicLinkResult(link, message) | None

Webhook handlers receive a thin event { "type": "message.received", "message": { "id": ... } } with an x-sente-secret header; fetch the full message with sente.messages.get(message_id).

Full onboarding playbook (CLI + framework templates): https://sente.run/skill.md.

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

sente_sdk-0.6.0.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

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

sente_sdk-0.6.0-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file sente_sdk-0.6.0.tar.gz.

File metadata

  • Download URL: sente_sdk-0.6.0.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for sente_sdk-0.6.0.tar.gz
Algorithm Hash digest
SHA256 58f81c6049c74a509c5e2c177a11fe826bbc2eecc22beb40b1d17d3b7c238313
MD5 902d842fd7069b41e04df68e816cc54d
BLAKE2b-256 9faca2ac83d63c47e6c234104f9e4a56d45c8a4f2b25785eaadf9a402c49270d

See more details on using hashes here.

File details

Details for the file sente_sdk-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: sente_sdk-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for sente_sdk-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8f28fc3d99ebdcb887e2b0dac102c5582f1f90401353fd4220b3692ae0db9cdf
MD5 f4f3dffc7de692abe36629a2ad5333aa
BLAKE2b-256 ea0a3285921b8eb6bdcd9216588bad1669353697bced77bafd5d3682066e1864

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