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

https://github.com/karitham/json2ini

take json, output ini
https://github.com/karitham/json2ini

Last synced: 2 months ago
JSON representation

take json, output ini

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.