Python toolkit for Epicor Kinetic environment management, CI/CD automation, and data migration workflows.
Project description
Kinetic DevOps
Status: ⚠️ ALPHA — Early development. API and features may change significantly.
Kinetic DevOps is a Python SDK and automation framework designed to bring modern DevOps practices to the Epicor Kinetic ecosystem. It provides a secure, extensible, and consistent foundation for environment management, CI/CD pipelines, and complex data migration workflows.
Features
- 🔐 Secure credential management — OS keyring-backed encryption, no plaintext secrets
- 🔄 Multi-environment support — Seamlessly switch between Dev/Test/Prod
- 🛠️ Ready-to-use Service Clients — High-level clients for BAQ, BOReader, Reports, Tax, and more, built on a robust base client with wire logging and data redaction.
- 🚀 Extensible Project Templates — A "batteries-included" project structure with auto-discovery for creating your own reusable functions, layers, and scheduled jobs.
- 🤖 CI/CD Ready — Designed for automation with environment variable support, programmatic APIs, and pre-commit hooks for local validation.
- 📜 Powerful CLI Tools — Includes helper scripts for environment initialization, health validation, and common administrative tasks like configuration syncing.
- 🧩 Layer Lifecycle Operations — Native MetaFX support for core layer import/delete operations (
ImportLayers/BulkDeleteLayers) with structured error reports. - 🤖 CI/CD ready — Environment variables, programmatic API, pre-commit hooks
- 📦 Modular architecture — Extend with custom project submodules
Quick Start
Windows PowerShell
.\scripts\env_init.ps1
python -m kinetic_devops.auth store
python scripts/validate.py
Linux/macOS
python scripts/env_init.py
python -m kinetic_devops.auth store
python scripts/validate.py
Usage
from kinetic_devops.auth import KineticConfigManager
from kinetic_devops.baq import BAQClient
# Initialize authentication
config = KineticConfigManager()
# Create BAQ client (handles session, headers, requests)
baq_client = BAQClient(config)
# Execute a BAQ
results = baq_client.execute_baq(
baq_id='CUST_List',
args={'Company': 'ABC', 'MaxResults': 100}
)
# Process results
for customer in results['value']:
print(f"{customer['CustomerID']}: {customer['CustomerName']}")
MetaFX Layer DevOps Flow
# Dry-run: parse dump files and resolve layer operations without sending requests
python -m kinetic_devops meta --env <ENV> --user <USER> layers "C:/path/dump (5).json" "C:/path/dump (6).json" --dry-run
# Execute: run import/delete operations and capture status + correlation IDs in a report
python -m kinetic_devops meta --env <ENV> --user <USER> layers "C:/path/dump (5).json" "C:/path/dump (6).json" --report temp/layer_ops_report.json
Default behavior for layers is deployment mode (--ops import):
- Executes delete operations first (when present)
- Then executes import operations
This flow is designed to support layer deployment and rollback as part of the DevOps cycle.
ExportAllTheThings Full Export Flow
Export everything currently exposed by your ExportAllTheThings library:
# Export all discovered Export* functions and write a manifest
python -m kinetic_devops export --env <ENV> --user <USER> --library ExportAllTheThings --out-dir exports/ExportAllTheThings
# List discovered export functions only
python -m kinetic_devops export --env <ENV> --user <USER> --list
# Run one export function
python -m kinetic_devops export --env <ENV> --user <USER> --function ExportAllCustomBAQs
The export command:
- Discovers export-capable functions from the EFx library (FunctionID starts with Export)
- Executes one or all exports
- Saves each artifact file
- Writes an export manifest JSON with per-function success/failure details
Mode behavior:
--mode auto(default): uses ExportAllTheThings when present, otherwise native endpoints--mode eatt: requires EFx export library behavior--mode native: no ExportAllTheThings dependency
Native examples (no ExportAllTheThings required):
# Run built-in native export plan for BAQs, directives, UD codes, MetaFX app list, etc.
python -m kinetic_devops export --mode native --env <ENV> --user <USER> --out-dir exports/native
# Pull one endpoint at a time
python -m kinetic_devops export --mode native --env <ENV> --user <USER> --native-endpoint "/api/v2/odata/{company}/Ice.BO.BAQDesignerSvc/GetList" --native-method POST --native-body '{"whereClause":"SystemFlag=false","pageSize":0,"absolutePage":0}' --native-name baq_list_single
Solution Workbench Backup And Recreate
Solution migration is a different workflow from package build/install.
BuildSolutionandInstallSolutionoperate on a built package artifactGetByID,GetNewExportPackage, andUpdateoperate on the solution definition dataset- Recreating the solution in the target environment lets you build it there later
Typical operational sequence:
createin Kinetic UI (author/edit your solution)backupin DevOpsbuildin DevOps (when you need a package artifact)installin DevOps (when promoting by package)recreatein DevOps (when migrating editable solution definition state)
You can use package promotion (build + install) and definition migration (recreate) independently or together.
Examples:
# Back up a solution definition and its tracked-item snapshots
python -m kinetic_devops solutions --env <SOURCE_ENV> --user <USER> backup MySolution --out-dir exports/solutions
# Recreate that solution definition in a target environment
python -m kinetic_devops solutions --env <TARGET_ENV> --user <USER> recreate exports/solutions/solution_backup_MySolution_20260331T000000Z.json
# Recreate under a new Solution ID, replacing an existing target solution if needed
python -m kinetic_devops solutions --env <TARGET_ENV> --user <USER> recreate exports/solutions/solution_backup_MySolution_20260331T000000Z.json --target-solution-id MySolution_Copy --overwrite
# Build a CAB package from a solution on the server
python -m kinetic_devops solutions --env <ENV> --user <USER> build MySolution
# Install a CAB package
python -m kinetic_devops solutions --env <ENV> --user <USER> install temp/MySolution.cab
# Install with automatic tenant-layer conflict cleanup and one retry
python -m kinetic_devops solutions --env <ENV> --user <USER> install temp/MySolution.cab --overwrite-duplicate-file --overwrite-duplicate-data --override-directives --auto-clear-layer-conflicts
Current recreate behavior is intentionally focused on the Solution Workbench definition:
- solution header and package rows
- solution detail membership rows
- backup capture of per-table dynamic/tracked snapshots for later analysis
recreate does not implicitly call build or install; those are explicit steps.
See examples/complete_flow.py for a complete auth → BAQ → results example.
Documentation
- ARCHITECTURE.md — Design principles, workflow examples
- scripts/README.md — Helper scripts reference
- tests/README.md — Test suite documentation
Known Limitations
- Alpha stage — Breaking changes may occur between versions
- Redaction edge cases — Heuristic-based sensitive data masking has known gaps
- Windows-first — Tested primarily on Windows; Linux/macOS support improving
Project Structure
kinetic-devops/ # Core library (published)
├── kinetic_devops/ # Main package
├── scripts/ # Helper scripts
├── tests/ # Test suite
└── projects/ # (Optional) User project submodules
Users extend this core by adding private Git submodules for their custom implementations.
Requirements
- Python 3.8+
keyring— Secure credential storagerequests— HTTP client
Installation
Using uv (recommended):
uv pip install kinetic-devops
Or with pip:
pip install kinetic-devops
From source with uv:
git clone https://github.com/your-org/kinetic-devops.git
cd kinetic-devops
uv sync
uv pip install -e .
License
See LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kinetic_devops-0.1.0a3.tar.gz.
File metadata
- Download URL: kinetic_devops-0.1.0a3.tar.gz
- Upload date:
- Size: 103.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
041881ae6f31633e7927bc3e048cb40c1312609b65577a53e1b3177a9444d152
|
|
| MD5 |
bdb24b9a9fd8b288444f9486e7008426
|
|
| BLAKE2b-256 |
f3ed2b73b927960fcb9fae73ceff611ff59a191b9cfe7b1d3b5995c81bbdda1e
|
Provenance
The following attestation bundles were made for kinetic_devops-0.1.0a3.tar.gz:
Publisher:
publish-pypi.yml on SteffesKBarrow/kinetic-devops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kinetic_devops-0.1.0a3.tar.gz -
Subject digest:
041881ae6f31633e7927bc3e048cb40c1312609b65577a53e1b3177a9444d152 - Sigstore transparency entry: 1275521059
- Sigstore integration time:
-
Permalink:
SteffesKBarrow/kinetic-devops@0500644b8dc7542dbd7dceba8703c5de87118cf9 -
Branch / Tag:
refs/tags/v0.1.0a3 - Owner: https://github.com/SteffesKBarrow
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@0500644b8dc7542dbd7dceba8703c5de87118cf9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file kinetic_devops-0.1.0a3-py3-none-any.whl.
File metadata
- Download URL: kinetic_devops-0.1.0a3-py3-none-any.whl
- Upload date:
- Size: 96.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5b7e2c7ce0a53ee525b2b7129b49a324b12d6aaeea1a106838d2770094bc665
|
|
| MD5 |
b1df7ae5174fbbf2a9cc42cfdfa983ee
|
|
| BLAKE2b-256 |
af6a87b0a6ee9f28d4bb542a2daf0f205ae4dad8c2c340abf14bc9db32959684
|
Provenance
The following attestation bundles were made for kinetic_devops-0.1.0a3-py3-none-any.whl:
Publisher:
publish-pypi.yml on SteffesKBarrow/kinetic-devops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
kinetic_devops-0.1.0a3-py3-none-any.whl -
Subject digest:
f5b7e2c7ce0a53ee525b2b7129b49a324b12d6aaeea1a106838d2770094bc665 - Sigstore transparency entry: 1275521160
- Sigstore integration time:
-
Permalink:
SteffesKBarrow/kinetic-devops@0500644b8dc7542dbd7dceba8703c5de87118cf9 -
Branch / Tag:
refs/tags/v0.1.0a3 - Owner: https://github.com/SteffesKBarrow
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@0500644b8dc7542dbd7dceba8703c5de87118cf9 -
Trigger Event:
push
-
Statement type: