Skip to main content

Official Mesa Python SDK

Project description

mesa-sdk

Official Mesa Python SDK.

This is the primary Python SDK for Mesa. It wraps the generated mesa-rest client with ergonomic async resource namespaces and automatic org inference.

Python 3.10+ is required.

Install

pip install mesa-sdk

Quick Start

import asyncio
from mesa_sdk import Mesa

async def main():
    async with Mesa(api_key="mk_...") as mesa:
        repos = await mesa.repos.list()
        print(repos)

asyncio.run(main())

Usage

Org Resolution

The SDK resolves your default organization automatically via /whoami on first use. You can bypass this by passing org to the constructor or overriding per-call:

# Default: org inferred from /whoami (lazy, cached)
mesa = Mesa(api_key="mk_...")
repos = await mesa.repos.list()

# Constructor org bypasses /whoami entirely
mesa = Mesa(api_key="mk_...", org="acme")
repos = await mesa.repos.list()

# Per-call override
repos = await mesa.repos.list(org="other-org")

Repositories

# List
repos = await mesa.repos.list()

# Create
repo = await mesa.repos.create(name="my-repo")

# Get
repo = await mesa.repos.get(repo="my-repo")

# Update
repo = await mesa.repos.update(repo="my-repo", name="renamed")

# Delete
await mesa.repos.delete(repo="my-repo")

Bookmarks

bookmarks = await mesa.bookmarks.list(repo="my-repo")
await mesa.bookmarks.create(repo="my-repo", name="feature-x", change_id="abc123")
await mesa.bookmarks.move(repo="my-repo", bookmark="feature-x", change_id="def456")
await mesa.bookmarks.merge(repo="my-repo", source="feature-x", target="main")
await mesa.bookmarks.delete(repo="my-repo", bookmark="feature-x")

Changes

from mesa_sdk import Author, FileUpsert

changes = await mesa.changes.list(repo="my-repo")
change = await mesa.changes.create(
    repo="my-repo",
    base_change_id="abc123",
    message="Add feature",
    author=Author(name="Alice", email="alice@example.com"),
    files=[FileUpsert(path="hello.txt", content="Hello, world!")],
)
change = await mesa.changes.get(repo="my-repo", change_id="def456")

Content & Diffs

content = await mesa.content.get(repo="my-repo", change_id="abc123")
diff = await mesa.diffs.get(
    repo="my-repo",
    base_change_id="abc123",
    head_change_id="def456",
)

API Keys

keys = await mesa.api_keys.list()
key = await mesa.api_keys.create(name="ci-key", scopes=["read", "write"])
await mesa.api_keys.revoke(key_id=key.id)

Webhook Targets

endpoints = await mesa.webhook_targets.list()
endpoint = await mesa.webhook_targets.create(url="https://example.com/hook", events=["change.created"])
await mesa.webhook_targets.update(webhook_target_id=endpoint.id, events=["push"])
await mesa.webhook_targets.delete(webhook_target_id=endpoint.id)

Virtual Filesystem

Mount repositories as a local filesystem for direct file I/O. The mount() context manager handles setup and teardown automatically.

async with mesa.fs.mount(repos=["my-repo"]) as fs:
    data = await fs.read("/my-repo/src/main.py")
    await fs.write("/my-repo/src/new_file.py", b"print('hello')")
    entries = await fs.readdir("/my-repo/src")

Read-only Mounts

Use mode="ro" when you only need to read files. Write operations will raise PermissionError.

async with mesa.fs.mount(repos=["my-repo"], mode="ro") as fs:
    data = await fs.read("/my-repo/README.md")

Multiple Repos

Mount several repositories at once. Each repo appears as a top-level directory.

async with mesa.fs.mount(repos=["repo-a", "repo-b"]) as fs:
    a = await fs.read("/repo-a/file.txt")
    b = await fs.read("/repo-b/file.txt")

Pin to Bookmark or Change

Use RepoConfig to pin a mount to a specific bookmark or change.

from mesa_sdk import RepoConfig

async with mesa.fs.mount(repos=[
    RepoConfig("my-repo", bookmark="feature-x"),
    RepoConfig("other-repo", change_id="abc123"),
]) as fs:
    data = await fs.read("/my-repo/file.txt")

Bash

Run shell commands inside the mounted filesystem with fs.bash().

async with mesa.fs.mount(repos=["my-repo"]) as fs:
    bash = fs.bash(env={"FOO": "bar"}, cwd="/my-repo", timeout_ms=30000)
    result = await bash.exec("ls -la")
    print(result.stdout, result.stderr, result.exit_code)

bash.exec() returns an ExecResult with stdout: bytes, stderr: bytes, and exit_code: int.

Changes and Bookmarks (on the Filesystem)

Create and manage changes and bookmarks directly from a mounted filesystem.

async with mesa.fs.mount(repos=["my-repo"]) as fs:
    # Changes
    change = await fs.changes.new("my-repo", bookmark="main")
    change = await fs.changes.edit("my-repo", change_id="abc123")
    changes = await fs.changes.list("my-repo", limit=50)

    # Bookmarks
    await fs.bookmarks.create("my-repo", "feature-y")
    bookmarks = await fs.bookmarks.list("my-repo")

Disk Cache

Enable on-disk caching to speed up repeated mounts.

from mesa_sdk import DiskCacheConfig

async with mesa.fs.mount(
    repos=["my-repo"],
    disk_cache=DiskCacheConfig(path="/tmp/mesa-cache", max_size_bytes=1_000_000_000),
) as fs:
    data = await fs.read("/my-repo/file.txt")

Filesystem Errors

Filesystem operations raise standard Python exceptions:

Exception Condition
FileNotFoundError Path does not exist
FileExistsError Path already exists (e.g. mkdir without parents)
IsADirectoryError Expected a file, got a directory
NotADirectoryError Expected a directory, got a file
PermissionError Write operation on a read-only mount
OSError General I/O failure
NotImplementedError Operation not supported (e.g. link)

Raw Client Access

For operations not covered by the resource namespaces, you can use the underlying mesa-rest AuthenticatedClient directly:

from mesa_rest.api.repo import list_repos

response = await list_repos.asyncio_detailed("acme", client=mesa.raw)

Configuration

Mesa accepts the following keyword arguments:

Parameter Type Default Description
api_key str | None MESA_API_KEY env var API key for authentication
api_url str https://api.mesa.dev/v1 Base URL for the Mesa API
org str | None Resolved from /whoami Default organization slug
user_agent str | None None Custom user agent suffix

Error Handling

The SDK raises typed exceptions for API errors:

from mesa_sdk import Mesa, NotFoundError, AuthenticationError

async with Mesa() as mesa:
    try:
        repo = await mesa.repos.get(repo="nonexistent")
    except NotFoundError:
        print("Repo not found")
    except AuthenticationError:
        print("Invalid API key")
Exception HTTP Status Description
ValidationError 400, 406 Invalid request parameters
AuthenticationError 401 Invalid or missing API key
AuthorizationError 403 Insufficient permissions
NotFoundError 404 Resource not found
ConflictError 409 Resource conflict
RateLimitError 429 Rate limit exceeded
ServerError 5xx Server-side error

All API exceptions inherit from ApiError, which inherits from MesaError.

Package Relationship

  • mesa-sdk is the ergonomic, main SDK.
  • mesa-rest is the generated REST client used under the hood.

Use mesa.raw when you need direct access to the generated AuthenticatedClient.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ x86-64

mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.34+ ARM64

mesa_sdk-0.28.2-cp310-abi3-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1512b0e0062a51409fed4e1219cd84f47bf530d0c5e0555380feb662cfe1a56
MD5 84c0eae337e8d2104e0197cc32fa88cb
BLAKE2b-256 9100f7a0bf9ce9065632340d8ff792bbe6b860c276daed23093cafc63f88cad9

See more details on using hashes here.

File details

Details for the file mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mesa_sdk-0.28.2-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 298101b24a59a05760f572db8865afff8fed000846440f6d5f4c42809e193b85
MD5 8ca84da5349195168e9f2dfa845720e1
BLAKE2b-256 46b7b463d0863756d16b0191d3123dc743e078fbdc69b26d260f3325b2c2d499

See more details on using hashes here.

File details

Details for the file mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4093ad20d1fd83ef3f24f2cafbfe41fd3a4c04bfc0762a01bdf3228ae435ae9b
MD5 7e4aef987ef823ceeee3d18f03d47161
BLAKE2b-256 05b3115cb10d02b2004e8c472d47bf6f8a1c7225bf4ba269f802ff1f1fbab6b6

See more details on using hashes here.

File details

Details for the file mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for mesa_sdk-0.28.2-cp310-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3ff4738ff4b88ab57c3d537294e6508fde500eabf11af536c230fd79b2f1be64
MD5 5e596cfa3ad1fa9b5a50b546293536ba
BLAKE2b-256 0822a97a44e8d5b9b4329a1ffb91fc114be2e8f5403421ba3c0f89c077154e0b

See more details on using hashes here.

File details

Details for the file mesa_sdk-0.28.2-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mesa_sdk-0.28.2-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54dab2a84e8ec105fb6f1726e586777918c69616072799609186fc388628a204
MD5 19a3ff84c214ef49338cbdc4e26e1f34
BLAKE2b-256 e2daed0e70db47b58757c7d273bc5e8176f0aac4abc904298fd7f09657474b7d

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