Skip to main content

EasyNet Python SDK surface (MVP)

Project description

EasyRemote

easynet-run-axon

Python SDK for EasyNet Axon — the Capability Control Plane for agent-native distributed execution.


What is this?

This is the Python surface for Axon, a protocol-level control plane that treats agent capabilities as first-class network objects — not raw RPC endpoints. Every ability you expose carries its own schema, trust posture, scheduling contract, and tenant isolation rules, enforced atomically at invocation time.

Why this matters: In traditional architectures, policy evaluation, node selection, rate limiting, and concurrency admission happen in separate systems with separate state. That creates a race window — OPA approves a call against nodes {A,B,C}, but the load balancer routes to Node D added between decisions. Axon collapses all six checks (tenant isolation, rate limit, policy, node selection, concurrency, circuit breaker) into a single atomic decision against the same state snapshot.

Note: The wheel is platform-tagged (not any) because it ships a native Dendrite bridge binary — the same C ABI that powers protocol-complete Axon gRPC calls without reimplementing protobuf encoding or streaming semantics in Python.

Install

pip install easynet-run-axon

Platform / Native Bundle Notes

The Python wheel contains native runtime + bridge payload and is therefore target-specific.

  • Wheels are published to PyPI per target. pip install on a host automatically selects the matching wheel.
  • For explicit cross-target workflows (CI + dev), use matching GitHub Release packs:
    • sdk-packs-aarch64-apple-darwin.tar.gz
    • sdk-packs-aarch64-apple-ios.tar.gz
    • sdk-packs-x86_64-apple-ios.tar.gz
    • sdk-packs-x86_64-unknown-linux-gnu.tar.gz
    • sdk-packs-aarch64-unknown-linux-gnu.tar.gz
    • sdk-packs-aarch64-linux-android.tar.gz
    • sdk-packs-x86_64-pc-windows-msvc.tar.gz
    • sdk-packs-x86_64-apple-darwin.tar.gz
  • If auto selection is not available (e.g., offline/air-gapped), install from pack file directly:
pip install /path/to/dist/sdk-packs/<version>/python/easynet_run_axon-<version>-cp*.whl
  • CI/source cross-target hints:
    • SDK_VERSION=<version> (optional; resolver checks this value and then falls back to 0.1.0)
    • EASYNET_DENDRITE_BRIDGE_PLATFORM=ios|android|linux|windows|macos
    • EASYNET_DENDRITE_BRIDGE_LIB=/abs/path/libaxon_dendrite_bridge.<ext>
    • EASYNET_DENDRITE_BRIDGE_HOME=/path/to/sdk-packs-<target>.tar.gz/extracted/package(例如 dist/sdk-packs/<version>/python 或其父级的统一目录)
    • EASYNET_DENDRITE_BRIDGE_SOURCE=local to auto-bind from source-tree release output (core/runtime-rs/dendrite-bridge/target/...) when running from repository checkout.

Quick Start

Expose an ability

from easynet_axon import ability, serve

@ability("easynet:///r/org/reg/agent.quote-bot/abilities/order.quote@1?tenant_id=tenant-test")
def quote(ctx, sku: str, qty: int = 1):
    return {"sku": sku, "price": 19.9 * qty}

serve("agent.quote-bot")

Invoke an ability

from easynet_axon import client

res = (
    client()
    .tenant("tenant-test")
    .ability("easynet:///r/org/reg/agent.quote-bot/abilities/order.quote@1?tenant_id=tenant-test")
    .call({"sku": "A1", "qty": 2})
)

Bootstrap a local runtime behind NAT

No public IP required. The SDK spawns a local Axon runtime that joins a federation Hub over outbound gRPC only:

from easynet_axon import start_server

srv = start_server(
    hub="axon://hub.easynet.run:50084",
    hub_tenant="tenant-test",
    hub_label="alice-macbook",
)

Capabilities

Core Protocol

  • Fluent builders.tenant().principal().ability().call() are immutable and chainable.
  • Native Dendrite bridgeDendriteBridge loads the platform C ABI via ctypes; all Axon gRPC shapes (unary, server-stream, client-stream, bidi-stream) are available without gRPC codegen.
  • Semantic DSLSemanticBridge and @ability_call decorator for ergonomic protocol invocation.
  • Subject binding.principal(...) scopes invocation to a subject identity with automatic URI visibility mapping (pub/prv/org).

Ability Lifecycle

Full lifecycle management — not just invocation:

  • build_ability_descriptor() / export_ability() — define and register abilities with schemas
  • deploy_to_node() — install + activate on target nodes
  • list_abilities() / invoke_ability() / uninstall_ability()
  • forget_all() — bulk removal of all deployed abilities

MCP & A2A Protocols

  • MCP serverStdioMcpServer hosts JSON-RPC 2.0 tool endpoints over stdio.
  • MCP operationsdeploy_mcp_list_dir(), list_mcp_tools(), call_mcp_tool_with_args(), update_mcp_list_dir()
  • A2A agent protocollist_a2a_agents(), get_a2a_agent_card(), send_a2a_task() for inter-agent task dispatch.
  • Tool adapterAbilityToolAdapter converts Axon abilities to OpenAI/Anthropic tool definitions with local handler registration.

Voice & Media Signaling

First-class voice call lifecycle and transport negotiation:

  • Call management: create, join, leave, end, watch events, report metrics
  • Transport sessions: create, set description, add ICE candidates, refresh lease
  • Codec profile negotiation

Federation

  • start_server() spawns a local Axon runtime and joins the Hub — all traffic is outbound.
  • FederationCaseKit for cross-network orchestration workflows.
  • Federated node discovery, heartbeat, and invocation dispatch.
  • Preset status: FederationCaseKit is currently the only first-party high-level federation preset helper; other SDKs expose federation through lower-level runtime/client surfaces only.

Remote Control & Orchestration

  • OrchestratorFactory / RemoteOrchestratorFactory for subprocess template building and capability deployment workflows.
  • Bundle reading, media persistence, CLI argument handling.

License

Apache-2.0 — see LICENSE.

Author

Silan Hu · silan.hu@u.nus.edu

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

easynet_run_axon-0.43.3.tar.gz (6.9 MB view details)

Uploaded Source

Built Distributions

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

easynet_run_axon-0.43.3-py3-none-win_amd64.whl (6.9 MB view details)

Uploaded Python 3Windows x86-64

easynet_run_axon-0.43.3-py3-none-manylinux_2_17_x86_64.whl (7.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

easynet_run_axon-0.43.3-py3-none-manylinux_2_17_aarch64.whl (7.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

easynet_run_axon-0.43.3-py3-none-macosx_11_0_arm64.whl (16.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

easynet_run_axon-0.43.3-py3-none-macosx_10_9_x86_64.whl (16.6 MB view details)

Uploaded Python 3macOS 10.9+ x86-64

File details

Details for the file easynet_run_axon-0.43.3.tar.gz.

File metadata

  • Download URL: easynet_run_axon-0.43.3.tar.gz
  • Upload date:
  • Size: 6.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for easynet_run_axon-0.43.3.tar.gz
Algorithm Hash digest
SHA256 3515da7d955eb1957924dfe2f5760bfd5335c1235122c0ce21b2be5c02a95363
MD5 834d788e14da128c99de2bd4811b48cd
BLAKE2b-256 234d6c36453636738bc1bbd8b3a7b0bf646e8b39af167b32176917fb28dfe05d

See more details on using hashes here.

File details

Details for the file easynet_run_axon-0.43.3-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for easynet_run_axon-0.43.3-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ffd4a7047242193d245e8801f3a12db5e85313caf7c22c78038bce79ccdae1b
MD5 e12893f0d407c49433e55fa26dcc600b
BLAKE2b-256 fac1806f6f21eea4c6451f345c3dff2be7dc443bcfb808687081f61221d50403

See more details on using hashes here.

File details

Details for the file easynet_run_axon-0.43.3-py3-none-manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for easynet_run_axon-0.43.3-py3-none-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 64a737efa6cd2a3c2931d6d6d3fe997279711014dc1cb98f02c929bb1f761066
MD5 f325780483d9b90c5d9ca396620b6e09
BLAKE2b-256 969d15a1796b684041a8594fe6beca29158c6686bc5a44e90ceb7af2fb094ef9

See more details on using hashes here.

File details

Details for the file easynet_run_axon-0.43.3-py3-none-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for easynet_run_axon-0.43.3-py3-none-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 898c27d9ad9203f02b1886ce59d15ce1cebaccc78672044197bf9a244364e481
MD5 ec74aa951772157b75c2ac9c055d7962
BLAKE2b-256 a7b62f0a4e6fbf2d1c3e16654d1afb5514e3350c1a0f202560ab37f0aa2e5ab9

See more details on using hashes here.

File details

Details for the file easynet_run_axon-0.43.3-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for easynet_run_axon-0.43.3-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ad03ebff90f8acc7bba42c9ab7273756169b41cfdc9ca8254e81d2ef97d6702
MD5 d8f78c4e20d7280f02dad1d9fec75b9c
BLAKE2b-256 9634245ea4af90a58af53f2c1f78cd0cca9cd958c02eefa188cef0f465577889

See more details on using hashes here.

File details

Details for the file easynet_run_axon-0.43.3-py3-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for easynet_run_axon-0.43.3-py3-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2beadf03d9069a085908480794f569f839fffb7b9d07955a67bf0f3b936ab545
MD5 b8e38f7c5c0dc348fd49eee5caa3c543
BLAKE2b-256 1abc3bd9848b0a8e285f6a4db1a65930d9574abe14cc233c2881078bef205afb

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