Convert yaml files to toml files.
$ cat example.yml
here
- we
- go
$ yaml2toml example.yml
$ cat example.toml
here = [ "we", "go",]
pip install yaml2toml
Project: https://github.com/hiljusti/yaml2toml
By: J.R. Hill
License: MIT
Note: This little script is nice for a one-off conversion. Check out yj
for a tool with more formats, features, support, etc.