Skip to main content

exobrain-actions-client

License: Private Python 3.12+

This package provides a REST API client for interacting with the Exobrain Actions API.

Key features:

  • Access to various API resources such as version status and health checks (ping).
  • Retrieval, triggering, or updating of action data specific to a service or organization.
  • Standardized HTTP calls to different API endpoints (version, health, action data, calculation triggers, scores, AI summaries).

User Guide

Installation

To install the Exobrain Actions Client, use the following command:

pip install exobrain-actions-client

Usage

To retrieve the AI-generated summary of a given action, create a client, instantiate the accessor, and call get_summary with the service name, organization ID, action ID, and the target language.

from uuid import UUID

from exobrain.actions.client.accessor import ActionsAccessor
from exobrain.actions.client.http_client import ClientType, create_client
from exobrain.actions.client.http_client.interfaces import HTTPStatusError

org_id = UUID("12345678-1234-5678-1234-567812345678")
action_id = UUID("87654321-4321-8765-4321-876543218765")

base_url = "https://actions-service.com/"
service = "stock-rebalancing"

client = create_client(
    ClientType.REQUESTS,
    base_url=base_url,
    verify=True,  # Set to False if you want to disable SSL verification
    timeout=10,
)
accessor = ActionsAccessor(client)
try:
    summary = accessor.get_summary(service, org_id, action_id, lang="en")
except HTTPStatusError as e:
    print(f"Failed to retrieve the summary: {e.response.status_code} - {e}")
else:
    print(f"Summary: {summary}")

Note — updating the "ACTUAL" KPI values is no longer done through this client. exobrain-server writes them directly into the kpi_mapping JSONB column of the running action context (EXO-1510).

Development workflow

Prerequisites

Before starting development, make sure you have the following tools installed:

  • Hatch: a modern Python project, environment, and packaging manager.

  • uv: a fast Python package installer and resolver.

Project Structure

  • Code: Place your models in exobrain/actions/client/.
  • Tests: Add your tests in tests/.

Development Commands

All tasks (testing, linting, type checking, packaging, etc.) are managed via hatch environments and scripts:

1. Installing Dependencies

Install all dependencies (including development tools):

hatch env create

2. Running Tests

Launch all tests using pytest:

hatch test

3. Linting and Formatting

Format your code:

hatch fmt -f

Check code style:

hatch fmt

4. Type Checking

Run type checks with mypy:

hatch run types:check

5. Coverage

Check test coverage with:

hatch test --cover

6. Building the Package

Build the package for distribution:

hatch build

7. Releasing

The release process uses uv and Github Actions.

  • For pre-release on TestPyPI: push a tag with rc or beta in the version (0.1rc1, 0.2b1 etc.).
  • For release: push a tag type v0.1 (main release) on main branch.
  • Configure secrets for PyPI tokens in repository settings (PYPI_TOKEN, TEST_PYPI_TOKEN).

Continuous Integration

All pushes and pull requests on main or development branches trigger the Continuous Integration pipeline
(see .github/workflows/ directory for details).


License

This project is private and confidential.

Download files

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

Source Distribution

exobrain_actions_client-0.5.0.tar.gz (63.1 kB view details)

Uploaded Source

Built Distribution

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

exobrain_actions_client-0.5.0-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file exobrain_actions_client-0.5.0.tar.gz.

File metadata

  • Download URL: exobrain_actions_client-0.5.0.tar.gz
  • Upload date:
  • Size: 63.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for exobrain_actions_client-0.5.0.tar.gz
Algorithm Hash digest
SHA256 143b447d0c9a2f7bd8a75cb1a96589a8f81f2cacd06fb0bb862b665225a1a28a
MD5 54974219b9ea47981fe0d35ad6c7a98a
BLAKE2b-256 dff110fb5ce9f7000b86750d460a5c7ed0c1a13f1ea2e6d25182dd51d646a6d6

See more details on using hashes here.

File details

Details for the file exobrain_actions_client-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: exobrain_actions_client-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for exobrain_actions_client-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5e806f8c42e8368de0525adc2e4fc60c3beb95e7f71f935d7a3cfec990e2b52
MD5 836307f7b729895a706e6d5a0cf49f6f
BLAKE2b-256 fe5fd42c347b34e32667a465f2db711b7ab2637aa45bc6ec850cad4d29e66fbd

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.5.0 This release

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page