ACE-X DevKit
Development kit for building ACE-X drivers and plugins.
Installation
pip install acex-devkit
Usage
Building a Network Element Driver
from acex_devkit.drivers import NetworkElementDriver, TransportBase, RendererBase, ParserBase
from acex_devkit.models import ComposedConfiguration
class MyRenderer(RendererBase):
def render(self, model: dict) -> str:
# Implement your rendering logic
pass
class MyTransport(TransportBase):
def connect(self) -> None:
# Implement connection logic
pass
def send(self, payload: Any) -> None:
# Implement send logic
pass
def verify(self) -> bool:
# Implement verification logic
return True
def rollback(self) -> None:
# Implement rollback logic
pass
class MyParser(ParserBase):
def parse(self, configuration: str) -> ComposedConfiguration:
# Implement parsing logic
pass
class MyDriver(NetworkElementDriver):
renderer_class = MyRenderer
transport_class = MyTransport
parser_class = MyParser
def render(self, configuration: ComposedConfiguration, asset):
return self.renderer.render(configuration, asset)
def parse(self, configuration: str) -> ComposedConfiguration:
return self.parser.parse(configuration)
Package Contents
- models: Common data models (Asset, LogicalNode, ComposedConfiguration, etc.)
- drivers: Base classes for building network element drivers
- exceptions: Common exceptions
- types: Type aliases and protocols
License
AGPL-3.0
Release files for acex-devkit 2.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| acex_devkit-2.6.0.tar.gz | 47.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| acex_devkit-2.6.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 127.4 kB
Release files / acex_devkit-2.6.0.tar.gz
| Download URL | acex_devkit-2.6.0.tar.gz |
|---|---|
| Size | 47.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ce40551fca426b536ecf695dfe3cd1ee7017657e64f763c555978b9259953189
|
|
BLAKE2b-256 checksum How to use checksums |
e2a9e297d1e1b51070ecce7ccf119ce073129e6ede1051788b3b72baf501a703
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / acex_devkit-2.6.0-py3-none-any.whl
| Download URL | acex_devkit-2.6.0-py3-none-any.whl |
|---|---|
| Size | 79.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cbdccbb3f1eaafa0e7c31ba5252dc07bdfa1ef0036cb9ea8b966b91f52c111a3
|
|
BLAKE2b-256 checksum How to use checksums |
8f85464981a1eb21af9581222b5c53de6fd97d29514c52a0507b943df936c181
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency log