Skip to content

Google Spreadsheet to JSON converter written in Go

License

Notifications You must be signed in to change notification settings

moorereason/gosh2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gosh2json

Google Spreadsheet to JSON converter written in Go.

Project Status Go Report Card License

gosh2json is a simple tool that converts the content of a Google Spreadsheet into a JSON object.

Usage

Usage of gosh2json:
  -c string
        path to JSON config file
  -i string
        spreadsheet ID
  -p    pretty print JSON

Example

$ 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"
    ]
  ]
}

License

gosh2jon is licensed under the MIT license. See LICENSE file for details.

About

Google Spreadsheet to JSON converter written in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages