-
released this
2026-02-01 19:04:18 +00:00 | 4 commits to main since this releaseInitial 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-converterQuick 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