-
v0.1.0
Stablereleased this
2026-02-04 07:05:53 +00:00 | 64 commits to main since this releaseWhat's Changed
Initial release of ConfigConvert CLI - a powerful tool for bidirectional conversion between JSON, YAML, TOML, and ENV config formats.
Features
- Bidirectional conversion between all supported formats
- Smart type inference for automatic type detection
- Syntax validation for all formats
- Flatten/unflatten nested structures
- JSON Schema generation
- Shell completion support (bash, zsh, fish)
- Rich terminal output
- Offline operation with minimal dependencies
Installation
pip install config-convert-cliUsage
# Convert JSON to YAML config-convert convert input.json --to yaml -o output.yaml # Validate syntax config-convert validate config.yaml # Flatten nested structures config-convert flatten config.json --output flat.env # Generate JSON Schema config-convert schema config.json -o schema.jsonTesting
- 245+ unit tests passing
- Full test coverage for all converters
- Integration tests for CLI commands
Downloads