Skip to main content

Python SDK for the Acontext API

Project description

acontext client for python

Python SDK for interacting with the Acontext REST API.

Installation

pip install acontext

Requires Python 3.10 or newer.

Quickstart

from acontext import AcontextClient, MessagePart

with AcontextClient(api_key="sk_project_token") as client:
    # List spaces for the authenticated project
    spaces = client.spaces.list()

    # Create a session bound to the first space
    session = client.sessions.create(space_id=spaces[0]["id"])

    # Send a text message to the session
    client.sessions.send_message(
        session["id"],
        role="user",
        parts=[MessagePart.text_part("Hello from Python!")],
    )

See the inline docstrings for the full list of helpers covering sessions, spaces, disks, and artifact uploads.

Managing disks and artifacts

Artifacts now live under project disks. Create a disk first, then upload files through the disk-scoped helper:

from acontext import AcontextClient, FileUpload

client = AcontextClient(api_key="sk_project_token")
try:
    disk = client.disks.create()
    client.disks.artifacts.upsert(
        disk["id"],
        file=FileUpload(
            filename="retro_notes.md",
            content=b"# Retro Notes\nWe shipped file uploads successfully!\n",
            content_type="text/markdown",
        ),
        file_path="notes/retro.md",
        meta={"source": "readme-demo"},
    )
finally:
    client.close()

Working with blocks

from acontext import AcontextClient

client = AcontextClient(api_key="sk_project_token")

space = client.spaces.create()
try:
    page = client.blocks.create(space["id"], block_type="page", title="Kick-off Notes")
    client.blocks.create(
        space["id"],
        parent_id=page["id"],
        block_type="text",
        title="First block",
        props={"text": "Plan the sprint goals"},
    )
finally:
    client.close()

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

acontext-0.0.1.dev1.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

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

acontext-0.0.1.dev1-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file acontext-0.0.1.dev1.tar.gz.

File metadata

  • Download URL: acontext-0.0.1.dev1.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.5

File hashes

Hashes for acontext-0.0.1.dev1.tar.gz
Algorithm Hash digest
SHA256 7307136595291ca3dc0dbf96d70b849d65e1c00b900cd8e8918f5d337f406292
MD5 a7000de28d05d2ad16abd042d0acaa4c
BLAKE2b-256 607c9551dc3c96409d0d32f2c995657992136c837281fbd9a28a91a98cc56e07

See more details on using hashes here.

File details

Details for the file acontext-0.0.1.dev1-py3-none-any.whl.

File metadata

File hashes

Hashes for acontext-0.0.1.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 afacbbb2062835b4e96ac5ebe52b0534ae5f21372c38618a024edc5d732ba539
MD5 4186fc4d200e38b4918b3a3f5a9f9b03
BLAKE2b-256 e301297b0707f98222fd0b8fb9a29f638c0da8d9df4016a4498d089410fc6866

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