https://github.com/booniepepper/yaml2toml
Converts yaml files to toml files
https://github.com/booniepepper/yaml2toml
converter python python3 toml yaml
Last synced: over 1 year 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 (about 5 years ago)
- Default Branch: core
- Last Pushed: 2024-08-07T22:52:50.000Z (almost 2 years ago)
- Last Synced: 2025-03-15T22:48:30.501Z (over 1 year 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._