Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/soartec-lab/json_to_csv

json to csv scripts
https://github.com/soartec-lab/json_to_csv

Last synced: about 16 hours ago
JSON representation

json to csv scripts

Awesome Lists containing this project

README

        

# json_to_csv
Jsonファイルをcsvファイルに変換する

以下の形式のファイルを読み込み

```
{
"Parameters": [
{
"ApplyMethod": "pending-reboot",
"Description": "Sets the application name to be reported in statistics and logs.",
"DataType": "string",
"Source": "engine-default",
"IsModifiable": true,
"ParameterName": "application_name",
"ApplyType": "dynamic"
},
{
"ApplyMethod": "pending-reboot",
"Description": "Sets the shell command that will be called to archive a WAL file.",
"DataType": "string",
"IsModifiable": false,
"Source": "system",
"ParameterValue": "/etc/rds/dbbin/pgscripts/rds_wal_archive %p",
"ParameterName": "archive_command",
"ApplyType": "dynamic"
}
]
}
```

以下を出力する

```
ParameterName,ParameterValue
application_name,default
archive_command,/etc/rds/dbbin/pgscripts/rds_wal_archive %p
```