Skip to main content

arcenciel 0.9.0 registry beta

Official Python 3.11+ client for the immutable Arc en Ciel Developer API 1.9.0 contract. The package provides synchronous and asynchronous generated APIs behind a small stable facade. It is published from the signed public source tag through PyPI Trusted Publishing.

Install

python3.11 -m pip install arcenciel==0.9.0

Search and inspect a model

from arcenciel import ArcEnCielClient

client = ArcEnCielClient(api_key="...", timeout=30.0)
page = client.call_sync(
    lambda: client.models.search_models_sync(
        search="landscape",
        page=1,
        limit=20,
    )
)

model = page.data[0] if page.data else None
if model and model.id:
    detail = client.call_sync(lambda: client.models.get_model_sync(id=model.id))
    print(detail.name)

Public catalogue reads do not require credentials. Configure api_key for account-specific filters and attribution. Use one key per integration and grant only the documented scope.

Test safely in the sandbox

All 258 stable methods can target deterministic, non-persistent fixtures without changing generated code:

sandbox = ArcEnCielClient(
    base_url="https://arcenciel.io/developers/sandbox",
    api_key="aec_test_public",
)
page = sandbox.call_sync(lambda: sandbox.models.search_models_sync(limit=5))

The sandbox rejects live API keys, bearer credentials, and cookies. It supports documented error scenarios, binary ranges, redirects, and streams for integration and retry tests. See the sandbox guide.

Async calls use the same typed namespace and opt into retries only when the operation is safe:

async with ArcEnCielClient(api_key="...") as client:
    model = await client.call(
        lambda: client.models.get_model(id=42),
        retry_safe=True,
    )

Stream and verify a download

from pathlib import Path

from arcenciel import ArcEnCielClient


async def download() -> Path:
    async with ArcEnCielClient(api_key="...") as client:
        info = await client.call(
            lambda: client.downloads.get_model_version_download_info(
                model_id=42,
                version_id=81,
            ),
            retry_safe=True,
        )
        return await client.download_to_file(
            42,
            81,
            "model.safetensors",
            filename=info.file_name,
            expected_sha256=info.sha256,
        )

download_to_file and download_to_file_sync follow HTTPS redirects, stream into an atomic temporary file, optionally preserve a Range header, and compare the complete SHA-256 before replacing the destination. A failed checksum removes only the temporary file and leaves an existing destination untouched. Use stream_download or stream_download_sync when the caller needs direct control over the response stream.

Errors and retries

ArcEnCielError exposes status, API code, request_id, response headers, and retry_after. Generated async calls are retried only when client.call(..., retry_safe=True) is used and the failure is a network error or 429, 502, 503, or 504. Writes are never retried implicitly. For a deliberately retried comment create, pass the same idempotency_key from the closure on every attempt. Synchronous calls are normalized with call_sync and are not automatically retried.

Create a comment with an idempotency key

from uuid import uuid4

from arcenciel.generated.models.create_article_comment_request import (
    CreateArticleCommentRequest,
)

key = str(uuid4())
created = client.call_sync(
    lambda: client.comments.create_model_comment_sync(
        model_id=42,
        idempotency_key=key,
        create_article_comment_request=CreateArticleCommentRequest(
            content="Useful training notes—thank you!"
        ),
    )
)
print(created.comment.id)

Unknown future response enum values remain strings instead of failing deserialization.

Read conversations and send once

from uuid import uuid4

inbox = client.call_sync(
    lambda: client.chat.list_chat_threads_sync(folder="inbox", limit=30)
)
for thread in inbox.data:
    print(thread.id, thread.title, thread.has_unread)

created = client.call_sync(
    lambda: client.chat.create_chat_message_sync(
        thread_id=81,
        idempotency_key=str(uuid4()),
        content="The release render is ready.",
    )
)
print(created.id)

Grant ChatRead for thread, message, presence, unread, and preview reads. Add ChatWrite only for requests, groups, messages, reactions, read state, and group mutations. Reuse the same idempotency key when deliberately retrying a request, group, or message create.

Manage and verify Developer Webhooks

from arcenciel import ArcEnCielClient, verify_webhook_signature

client = ArcEnCielClient(api_key="...")
endpoints = client.webhooks.list_webhook_endpoints_sync()
valid = verify_webhook_signature(
    raw_body,
    request.headers["x-aec-signature"],
    webhook_secret,
)

Grant WebhooksRead for event, endpoint, and delivery reads. Add WebhooksWrite for endpoint lifecycle, test delivery, secret rotation, and manual retry. Pass the exact unparsed request body to verify_webhook_signature; its default replay window is five minutes. Run examples/webhook_workflow.py with a WebhooksRead key for a non-mutating discovery and local signature-verification smoke workflow.

Stable namespaces

Namespace Stable operations
client.articles Article discovery, drafts, media, scheduling, publication, updates, and deletion
client.chat Private threads, requests, groups, messages, reactions, presence, and read state
client.collabs Collaboration discovery, showcases, requests, participant media, and membership
client.collections Collection discovery, creation, collaborators, contribution review, items, and media
client.comments Typed article, image, model, and video comment reads and mutations
client.downloads Model download metadata, binary transfers, training TOML, archives, and registration
client.emotes Anonymous emote catalogue reads
client.feedback Caller-owned product feedback, attachments, and deletion
client.generator Image/video generation options, presets, uploads, jobs, events, outputs, and publish
client.images Image discovery, uploads, metadata, crossposts, publishing, and bulk transfer
client.models Models, versions, resumable uploads, managed media, resources, and publishing
client.notifications Cursor-paginated inbox, summary, and read-state updates
client.profile Own profile, uploads, export, history, pinned templates, links, and profile media
client.social Favorites, follows, image/video reactions, and their explicit removal operations
client.tags Anonymous tag-usage discovery
client.trust_safety Illegal-content notices, private evidence, review requests, and content reports
client.users Public profiles, creator statistics, search, and visible uploads
client.videos Video discovery, uploads, metadata, publishing, HLS, streaming, and downloads
client.webhooks Endpoint lifecycle, event catalog, delivery diagnostics, retries, and secret rotation

The generated low-level APIs and Pydantic models remain available under arcenciel.generated.

Contract and generation

Generated code is committed and deterministically regenerated from the immutable contract. The hand-written facade, tests, and this README are preserved across regeneration.

License

MIT

Download files

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

Source Distribution

arcenciel-0.9.0.tar.gz (330.7 kB view details)

Uploaded Source

Built Distribution

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

arcenciel-0.9.0-py3-none-any.whl (946.7 kB view details)

Uploaded Python 3

File details

Details for the file arcenciel-0.9.0.tar.gz.

File metadata

  • Download URL: arcenciel-0.9.0.tar.gz
  • Upload date:
  • Size: 330.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for arcenciel-0.9.0.tar.gz
Algorithm Hash digest
SHA256 4754abcfb9ded0e0c0395efc680fcbd8105c7f8ddac5865f8b949dc099a762c0
MD5 df79da2372473872ed8c3e07cbe3e0c7
BLAKE2b-256 737917ab47a42132141ec33953eb1bfa1cfce0651891c78ed0f148f8d9f63f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcenciel-0.9.0.tar.gz:

Publisher: publish.yml on FallenIncursio/arcenciel-sdks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcenciel-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: arcenciel-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 946.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for arcenciel-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 69bf0a7f5bff67c1984b832dc9f69ef4f82013910b377d2b2299f0296f9c515b
MD5 fd37c4eb2e558838f476f196cbf2dafc
BLAKE2b-256 8598333773058e77858ebce240fdeeab5cb803d96e49e80915ec3bd37faae621

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcenciel-0.9.0-py3-none-any.whl:

Publisher: publish.yml on FallenIncursio/arcenciel-sdks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page