| Crates.io | vizo |
| lib.rs | vizo |
| version | 1.1.0 |
| created_at | 2025-07-05 17:41:50.543127+00 |
| updated_at | 2025-07-16 14:56:48.789251+00 |
| description | Visualize structured data formats in a more pretty way. |
| homepage | https://github.com/kostya-zero/vizo |
| repository | https://github.com/kostya-zero/vizo |
| max_upload_size | |
| id | 1739344 |
| size | 34,353 |
vizoVizo is a command line tool that can be used to visualize structured data in a more readable format. It is designed to be simple and easy to use, with a focus on providing a clear and concise representation of the data. Vizo supports most of the popular data formats, including JSON, YAML, and TOML.
It supports any type of the values, including:
cargo install vizo
Go to GitHub Releases and download the latest release for your platform.
Vizo can be used to visualize data from files or standard input. It automatically detects the data format and displays it using the Prettij markup language. Prettij is specifically designed for Vizo to present data in a way that's easy to understand. It uses syntax patterns inspired by JSON, YAML, and TOML.
$ vizo Cargo.toml
package = {
name = "myproject"
version = "0.1.0"
edition = "2024"
}
dependencies = {
clap = "4.5.37"
sysinfo = "0.35.0"
}
Also, you can specify the language of the data explicitly:
$ vizo Cargo.toml --language toml
You can pipe data to Vizo from standard input, but you need to specify the language of the data:
$ echo '{"name": "John", "age": 30, "city": "New York"}' | vizo -l json
name = "John"
age = 30
city = "New York"
TBW
Vizo is licensed under the MIT License. See the LICENSE file for more details.