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/",
        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.dev3.tar.gz (11.4 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.dev3-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for acontext-0.0.1.dev3.tar.gz
Algorithm Hash digest
SHA256 134172e1b2403aeac0052496112289dcadec254830e5c203f5027c6cd444d0f8
MD5 34185fac6775e3a62c72413a31edeb98
BLAKE2b-256 9467977d29ed3b8abcc947f3c722c38480f05129f463dfa6b40fec64eb7a071f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for acontext-0.0.1.dev3-py3-none-any.whl
Algorithm Hash digest
SHA256 d0b1922aef4a85bf74027cd7a44c125ae2d27b1ed00c816cf372c2f70d3def4c
MD5 613fac66c9f0f6d1e40e474dd6fd084f
BLAKE2b-256 9e6b84e4ebf8ec567c0953457623a627c1d70c9b294b3c2f59aa9ef1809dac04

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