Google Spreadsheet to JSON converter written in Go.
gosh2json
is a simple tool that converts the content of a Google Spreadsheet into a JSON object.
Usage of gosh2json:
-c string
path to JSON config file
-i string
spreadsheet ID
-p pretty print JSON
$ gosh2json -i 34ZfqfhHiynWxs2TT6ocpX4tm7D3T1nkI2rRL3sgZkPM -c client.json -p
{
"Sheet1": [
[
"Date",
"Name",
"Title",
"Website",
],
[
"Jan 19",
"Tom Johnson",
"Life Groups Pastor",
"example.org"
],
[
"Jan 26",
"Russ Whitehead",
"Pastor",
"example.org"
],
[
"Feb 2",
"Juan Juarez",
"Missions Director",
"www.example.edu"
]
]
}
gosh2jon
is licensed under the MIT license. See LICENSE file for
details.