A generic specification and blueprint pattern for declarative configuration-as-code tools.
Project description
spectrik
A generic specification and blueprint pattern for declarative configuration-as-code tools.
Overview
spectrik provides a reusable framework for building tools that apply declarative configurations to external systems. It includes:
- Specification — an abstract base class for defining desired-state resources
- SpecOp strategies —
Present,Ensure, andAbsentwrappers that control when specs are applied or removed - Blueprint — a named, ordered collection of spec operations
- Project — a top-level build target that orchestrates blueprints
- HCL loading engine — parse
.hclfiles into blueprints and projects with decorator-based spec registration
Installation
pip install spectrik
Quick Start
import spectrik
from spectrik.hcl import load_blueprints, load_projects
# Register specs for HCL block decoding
@spectrik.spec("widget")
class Widget(spectrik.Specification["MyProject"]):
def __init__(self, *, color: str):
self.color = color
def equals(self, ctx):
...
def apply(self, ctx):
...
def remove(self, ctx):
...
# Load from HCL files
blueprints = load_blueprints(Path("hcl"))
projects = load_projects(Path("hcl"), blueprints, project_type=MyProject)
# Build a project
projects["myapp"].build(dry_run=True)
License
MIT
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
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 spectrik-0.1.0.tar.gz.
File metadata
- Download URL: spectrik-0.1.0.tar.gz
- Upload date:
- Size: 37.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b21678bdeefc896fd9dbc02ec92b869b671e0a1119c3a962c66ebb4be5e8d40e
|
|
| MD5 |
bd4b962d979342af04adf02b297c9bb1
|
|
| BLAKE2b-256 |
a7659724d4fddb1919e794232b39115b7392569525f99ee233eff65478203a00
|
File details
Details for the file spectrik-0.1.0-py3-none-any.whl.
File metadata
- Download URL: spectrik-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f39c454b157de77a6168ec65d245222f1c93d139040252b93652e9544aaa1bf
|
|
| MD5 |
3c412444d9b4723807cac7b529a285bc
|
|
| BLAKE2b-256 |
d7d5da4693e14dda08e276a5b035d23642b974945c57748f0f79f57fc847ba2a
|