• v1.0.0 9e9262818b

    v1.0.0
    Some checks failed
    CI / test (push) Failing after 13s
    Stable

    7000pctAUTO released this 2026-02-01 19:04:18 +00:00 | 4 commits to main since this release

    Initial release of Data Format Converter CLI Tool.

    Features

    • Multi-format conversion (JSON, YAML, TOML, CSV)
    • Syntax validation with detailed error reporting
    • Syntax highlighting using Rich library
    • Interactive TUI mode for data viewing and editing
    • File watching for live conversions
    • Stdin/stdout support for piping

    Installation

    pip install data-format-converter
    

    Quick Start

    # Convert JSON to YAML
    dfc convert input.json -to yaml -o output.yaml
    
    # Validate a file
    dfc validate config.yaml
    
    # Interactive mode
    dfc tui config.json
    
    # Watch file for changes
    dfc watch input.yaml -to json -o output/
    
    Downloads