https://github.com/karitham/json2ini
take json, output ini
https://github.com/karitham/json2ini
Last synced: 12 months ago
JSON representation
take json, output ini
- Host: GitHub
- URL: https://github.com/karitham/json2ini
- Owner: karitham
- Created: 2024-05-09T08:26:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T08:30:09.000Z (about 2 years ago)
- Last Synced: 2025-03-15T15:33:44.005Z (over 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# json2ini
Takes a JSON document in the format
```json
{
"section": {
"key": "value"
}
}
```
and transforms it into ini
```ini
[section]
key=value
```
This is perfect for generating rclone config files for example.