{"id":37095562,"url":"https://github.com/frudens/sheetskv","last_synced_at":"2026-01-14T11:46:40.630Z","repository":{"id":57517948,"uuid":"146879516","full_name":"frudens/sheetskv","owner":"frudens","description":"sheetskv is a CLI tool for using Google Spreadsheets as the Key Value Store","archived":false,"fork":false,"pushed_at":"2018-10-16T14:36:19.000Z","size":15,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-06-20T09:18:30.422Z","etag":null,"topics":["cli","go","spreadsheets"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frudens.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-31T10:48:29.000Z","updated_at":"2019-08-21T22:13:32.000Z","dependencies_parsed_at":"2022-09-26T18:01:34.655Z","dependency_job_id":null,"html_url":"https://github.com/frudens/sheetskv","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/frudens/sheetskv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frudens%2Fsheetskv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frudens%2Fsheetskv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frudens%2Fsheetskv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frudens%2Fsheetskv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frudens","download_url":"https://codeload.github.com/frudens/sheetskv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frudens%2Fsheetskv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28419257,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","go","spreadsheets"],"created_at":"2026-01-14T11:46:40.165Z","updated_at":"2026-01-14T11:46:40.625Z","avatar_url":"https://github.com/frudens.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sheetskv\n\nsheetskv is a CLI tool for using Google Spreadsheets as the Key Value Store\n\n## Intro\n\n* Use Google Spreadsheets as a key value store.\n* Manage by using the column A of the Google Spreadsheets as a key and the column B as the value\n\n## Getting Started\n\n1. You must have a [Go](http://golang.org) compiler installed.\n2. Download and build sheetskv: `go get github.com/frudens/sheetskv`\n3. Either copy the `sheetskv` executable in `$GOPATH/bin` to a directory in\n   your `PATH`, or add `$GOPATH/bin` to your `PATH`.\n4. Create a new console project and enable the Google Sheets API.\n5. Download the configuration file.\n6. Move the downloaded file to your home directory and ensure it is named `.sheetskv.credentials.json`.\n7. Check the Spreadsheets id and sheet name in the web browser.\n8. Run `sheetskv --sheetId SHEETID --sheetName SHEETNAME ls`\n9. For sheet ID and sheet name, set alias to .bashrc. `alias sheetskv='sheetskv -i XXXXX -n default' \n10. Run `sheetskv ls`\n\n### When the command is executed for the first time\n\n* Browse to the provided URL in your web browser.\n* Log in with Google account.\n* Click the Accept button.\n* Copy the code you're given, paste it into the command-line prompt, and press Enter.\n\n## Usage\n\nDownload configuration file and move.\n\n```\n$ cd\n$ mv ~/Downloads/client_secret_111111111111-xxxxxxxxxxxxxxx.apps.googleusercontent.com.jsodn ~/.sheetskv.credentials.json\n```\n\nCheck the Spreadsheets id and sheet name in the web browser.\n\n**Google Spreadsheets example**\n\nSheetId: `12345`\n\nSheetName: `default`\n\n| A | B |\n|:---|:---|\n| key1 | value1 |\n| key2 | value2 |\n| key3 | value3 |\n\n**ls (List contents of column A of Spreadsheets)**\n\n```\n~ $ sheetskv -i 12345 -n default ls\nkey1\nkey2\nkey3\n```\n\n**get (If the key matches the Spreadsheets' A column, display the contents of column B)**\n\nThe default is not to output a line feed.\n\n```\n~ $ sheetskv -i 12345 -n default get key1\nvalue1 ~ $\n```\n\nOutput a line feed with the - cr option.\n\n```\n~ $ sheetskv -i 12345 -n default get key1 --cr\nvalue1\n~ $\n```\n\n**add (If the key matches the Spreadsheets' A column, update the contents of column B, and if it does not match, add it)**\n\n```\n~ $ sheetskv -i 12345 -n default add key4 value4\n```\n\nBecause there is no key, it will be added.\n\n| A | B |\n|:---|:---|\n| key1 | value1 |\n| key2 | value2 |\n| key3 | value3 |\n| key4 | value4 |\n\n```\n~ $ sheetskv -i 12345 -n default add key4 updated\n```\n\nBecause there is a key, it will be updated.\n\n| A | B |\n|:---|:---|\n| key1 | value1 |\n| key2 | value2 |\n| key3 | value3 |\n| key4 | updated |\n\n## Author\n\nfrudens Inc. \u003chttps://frudens.com\u003e\n\n## License\n\nThis software is distributed under the\n[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),\nsee LICENSE.txt for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrudens%2Fsheetskv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrudens%2Fsheetskv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrudens%2Fsheetskv/lists"}