Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/booniepepper/yaml2toml
- Owner: booniepepper
- License: mit
- Created: 2021-06-09T05:40:47.000Z (over 3 years ago)
- Default Branch: core
- Last Pushed: 2024-08-07T22:52:50.000Z (6 months ago)
- Last Synced: 2024-10-08T00:51:13.410Z (4 months ago)
- Topics: converter, python, python3, toml, yaml
- Language: Python
- Homepage: https://pypi.org/project/yaml2toml/
- Size: 17.6 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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._