Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/booniepepper/yaml2toml

Converts yaml files to toml files
https://github.com/booniepepper/yaml2toml

converter python python3 toml yaml

Last synced: 4 months ago
JSON representation

Converts yaml files to toml files

Awesome Lists containing this project

README

        

# yaml2toml

Convert yaml files to toml files.

```
$ cat example.yml
here
- we
- go

$ yaml2toml example.yml

$ cat example.toml
here = [ "we", "go",]
```

### Install

```shell
pip install yaml2toml
```

### Etc

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`](https://github.com/sclevine/yj) for a tool with more formats, features, support, etc._