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.4.0.tar.gz (6.4 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.4.0-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: sente_sdk-0.4.0.tar.gz
  • Upload date:
  • Size: 6.4 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.4.0.tar.gz
Algorithm Hash digest
SHA256 eb2fb655c86fae4a6544e1c3ac361259272777fcb3fed81adb5a4531281a439e
MD5 19922dde09ceace2bbbfeda4c8879a1f
BLAKE2b-256 e0c0f5e742d06e11ebae76753e0c7b409303673fe14881d1939e82b5b1e22fc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sente_sdk-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 6.7 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.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d5b8233acc7587b87f5e4b97f6436ed878bae621cf0434c37b3d7ff59e955fe2
MD5 89302486febc4cad205e4486f4f4043e
BLAKE2b-256 01dc72c0121b87ab7204c3104daab891cb35bfe81379e5301bf448db575c93ac

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