{"id":41188604,"url":"https://github.com/bakyazi/gopass","last_synced_at":"2026-01-22T20:20:23.854Z","repository":{"id":65230880,"uuid":"552048596","full_name":"bakyazi/gopass","owner":"bakyazi","description":"password database manager. It uses Google Sheets as a database.","archived":false,"fork":false,"pushed_at":"2022-10-16T08:57:12.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-20T17:43:57.702Z","etag":null,"topics":["password","password-store","sheets-api"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bakyazi.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":"2022-10-15T17:43:53.000Z","updated_at":"2023-10-17T11:45:42.000Z","dependencies_parsed_at":"2023-01-15T18:00:18.909Z","dependency_job_id":null,"html_url":"https://github.com/bakyazi/gopass","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bakyazi/gopass","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakyazi%2Fgopass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakyazi%2Fgopass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakyazi%2Fgopass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakyazi%2Fgopass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bakyazi","download_url":"https://codeload.github.com/bakyazi/gopass/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakyazi%2Fgopass/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28670368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T19:36:09.361Z","status":"ssl_error","status_checked_at":"2026-01-22T19:36:05.567Z","response_time":144,"last_error":"SSL_read: 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":["password","password-store","sheets-api"],"created_at":"2026-01-22T20:20:23.384Z","updated_at":"2026-01-22T20:20:23.815Z","avatar_url":"https://github.com/bakyazi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gopass\ngopass is a password database manager. It uses Google Sheets as a database.\n\n## 1. Setup\n1. Create a new Google Sheet: https://sheets.new.\n2. Add three columns, first column is \"site\", second one is \"username\" and last one is \"password\"\n3. Save the ID of your Sheet from URL (it’s a random string that looks like `1SMeoyesCaGHRlYdGj9VyqD-qhXtab1jrcgHZ0irvNDs`)\n4. Save credentials of this account as a json file\n5. Create `.gopass` folder in `$HOME` directory. \n6. Move `credentials.json` to `$HOME/.gopass/`\n7. Create a json file named `conf.json` in same folder, and paste your Sheet ID like `{\"sheetId\":\"YOUR_SHEET_ID\"}`\n8. Go to https://console.cloud.google.com/apis/credentials, Create new Service Account.\n9. Go to your Google Sheets, click \"Share\" and give this email address \"Editor\" access on your sheet.\n10. Go to https://console.developers.google.com/apis/api/sheets.googleapis.com/overview and make sure the Google Sheets API is enabled.\n\n## 2. Usage\n### 2.1 Commands\n#### 2.1.1 Create new password\nYou can create by giving password\n\n`gopass create --site=\"github.com\" --username=\"bakyazi\" --password=MY_PASSWORD`\n\nor you can create by generating random password\n\n`gopass create --site=\"github.com\" --username=\"bakyazi\" --auto=\"16/lsun\"`\n\nAfter this command is executed successfully, your password is copied into your clipboard. \n\n#### 2.1.2 Update password\nYou can update by giving password\n\n`gopass update --site=\"github.com\" --username=\"bakyazi\" --password=MY_PASSWORD`\n\nor you can update by generating random password\n\n`gopass update --site=\"github.com\" --username=\"bakyazi\" --auto=\"16/lsun\"`\n\nAfter this command is executed successfully, your password is copied into your clipboard.\n\n#### 2.1.3 Get password\nYou can fetch your\n\n`gopass get --site=\"github.com\" --username=\"bakyazi\"`\n\nAfter this command is executed successfully, your password is copied into your clipboard.\n\n#### 2.1.4 List all passwords\nYou can fetch your\n\n`gopass list`\n\n#### 2.1.5 Delete a password\nYou can update by giving password\n\n`gopass delete --site=\"github.com\" --username=\"bakyazi\"`\n\n#### 2.1.6 Delete all passwords\nYou can update by giving password\n\n`gopass clear`\n\n### 2.2 Password Generation\nYou can manage password generation with `--auto` flag\n\nThe format of this flag is `\u003cLENGTH\u003e/\u003cCHAR-SET-OPTIONS\u003e`\n\n| Char Set Option \t | Meaning                     \t|\n|-------------------|-----------------------------\t|\n| l or L \t          | Lowercase Letter Characters \t|\n| u or U \t          | Uppercase Letter Characters \t|\n| s or S \t          | Special Characters          \t|\n| n or N \t          | Number                      \t|\n\n**Examples**\n| Option  \t| Result                           \t|\n|---------\t|----------------------------------\t|\n| 8/sun   \t| V0$$T7LH                         \t|\n| 16/lsun \t| r@C95!q4O1l640d!                 \t|\n| 32/lun  \t| 4rFV5ZP844piFE8UWjLbDFr45Us7IOF6 \t|\n| 12/un   \t| C9E2W4E38OUO                     \t|\n| 6/n     \t| 328218                           \t|\n| 32/lsun \t| K0b*s2QQ62ft@g$h8Rpc0%3G@3!80O#! \t|\n\n## Demo\n[![Demo](https://img.youtube.com/vi/gLtd0f_lEhA/0.jpg)](https://www.youtube.com/watch?v=gLtd0f_lEhA)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbakyazi%2Fgopass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbakyazi%2Fgopass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbakyazi%2Fgopass/lists"}