Output Formatting

Structured output with plain, JSON, table, and template formats.

2 min read 410 words

Milo formats command return values based on the--format flag. Every command registered with @cli.command automatically supports --format plain|json|table.

Formats

Plain (default)

Human-readable output. Dicts show aligned key-value pairs, lists show one item per line:

@cli.command("info", description="Show info")
def info() -> dict:
    return {"name": "myapp", "version": "1.0.0", "status": "healthy"}
$ myapp info
  name     myapp
  version  1.0.0
  status   healthy

JSON

Structured JSON output for piping to other tools:

$ myapp info --format json
{
  "name": "myapp",
  "version": "1.0.0",
  "status": "healthy"
}

Table

Tabular output for lists of dicts. Uses kida's table filter when available, with a simple column-aligned fallback:

@cli.command("list", description="List items")
def list_items() -> list[dict]:
    return [
        {"id": 1, "name": "Alpha", "status": "active"},
        {"id": 2, "name": "Beta", "status": "pending"},
    ]
$ myapp list --format table
id  name   status
--  -----  -------
1   Alpha  active
2   Beta   pending

Milo's built-in table and plain dict formatting align by terminal display cells, not Python character count. ANSI color escapes are ignored for width, and wide Unicode glyphs count as two cells, so diagnostic tables stay aligned in real terminals.

Template

Render through a kida template:

from milo import format_output

output = format_output(data, fmt="template", template="report.kida")

Using format_output directly

For custom formatting outside the CLI dispatcher:

from milo import format_output

text = format_output({"key": "value"}, fmt="json")

write_output

write_outputformats and writes to stdout in one call:

from milo import write_output

write_output(data, fmt="table")

This is what the CLI dispatcher calls after each command handler returns.

Terminal-only renderers

Keep handlers structured for programmatic and MCP callers while preserving a purpose-built human report withterminal_renderer:

from milo import CLI, Context

cli = CLI(name="audit")


def render_summary(result: dict[str, int], ctx: Context) -> str:
    return f"Found {result['findings']} finding(s)"


@cli.command("check", terminal_renderer=render_summary)
def check() -> dict[str, int]:
    return {"findings": 3}

The renderer receives (result, context)and runs only for plain output sent to the terminal.--format json, --format table, --output-file, call(), call_raw(), and MCP retain the original structured result. Do not print() inside reusable handlers or renderers; MCP reserves stdout for JSON-RPC.

Advanced terminal reports

For dense diagnostic output, study examples/outputgallery. The ADOPTION.md guide shows migration recipes and before/after patterns. It shows bounded audit reports, ASCII-safe CI output, drilldowns, topology views, build heatmaps, cache telemetry, and JSON output from the same command data. Keep command return values structured so--format jsonand MCP structuredContentremain useful.