Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/soartec-lab/json_to_csv
- Owner: soartec-lab
- Created: 2018-08-31T00:51:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-31T01:01:56.000Z (over 6 years ago)
- Last Synced: 2025-01-04T20:57:45.198Z (7 days ago)
- Language: Ruby
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```