Metadata-Version: 2.1
Name: blok
Version: 0.0.5
Summary: 
Author: jhnnsrs
Author-email: jhnnsrs@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: cookiecutter
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Description-Content-Type: text/markdown

# blok


## Inspiration

This package is designed to create docker compose projects through python code.
blok is following the principles of depencency injection and inversion of control to create a project
from various "bloks" (e.g. a configurable service).

# Features

- Diffable projects (e.g. compare the changes between two projects, down to the configuration level)
- CLI




## Installation

```bash
pip install blok
```

## Quickstart

```python my_cli

from blok import blok, InitContext, ExecutionContext, CLIOption, create_cli


@blok("minio_service")
class MinioBlok:
    def __init__(self):
        self.buckets = []

    def register_bucket(self, bucket: str):
        self.buckets.append(bucket)
        return bucket

    def build(self, context: ExecutionContext):
        service = {
            "image": "minio/minio",
            "command": ["server", "/data"],
            "volumes": [],
        }

        for bucket in self.buckets:
            context.file_tree.set_nested("mounts", bucket, {})
            service["command"].append(f"/data/{bucket}")
            service["volumes"].append(f"./mounts/{bucket}:/data/{bucket}")

        context.docker_compose.set_nested("services", "minio", service)


@blok("api_service", dependencies=["minio_service"], options=[CLIOption("port", type=int, default=8080)])
class DataBlok:
    def __init__(self):
        self.register_buckets: []

    def init(self, context: InitContext):
        self.minio_service = context.dependencies.get("minio_service")
        self.minio_service.register_bucket("data")
        self.minio_service.register_bucket("logs")

    def build(self, context: ExecutionContext):
        image = {
            "image": "dependend",
            "command": ["-port", self.port],
        }
        context.docker_compose.set_nested("services", "data", image)


cli = create_cli(MinioBlok(), DataBlok())
cli()


```

## CLI Usage

```bash
python my_cli.py --help
```



