{"id":13478786,"url":"https://github.com/ndbeals/keep-exporter","last_synced_at":"2025-03-27T08:30:59.430Z","repository":{"id":47712575,"uuid":"329175899","full_name":"ndbeals/keep-exporter","owner":"ndbeals","description":"A command line utility to export Google Keep notes to markdown.","archived":false,"fork":false,"pushed_at":"2021-10-28T14:48:53.000Z","size":153,"stargazers_count":95,"open_issues_count":4,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-24T04:03:11.984Z","etag":null,"topics":["export-notes","google-keep","google-keep-export","google-keep-notes","keep","keep-export","markdown-export"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/keep-exporter/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ndbeals.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":"2021-01-13T02:54:20.000Z","updated_at":"2025-02-22T04:29:04.000Z","dependencies_parsed_at":"2022-08-29T23:51:40.312Z","dependency_job_id":null,"html_url":"https://github.com/ndbeals/keep-exporter","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndbeals%2Fkeep-exporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndbeals%2Fkeep-exporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndbeals%2Fkeep-exporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndbeals%2Fkeep-exporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ndbeals","download_url":"https://codeload.github.com/ndbeals/keep-exporter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245809706,"owners_count":20676037,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["export-notes","google-keep","google-keep-export","google-keep-notes","keep","keep-export","markdown-export"],"created_at":"2024-07-31T16:02:03.036Z","updated_at":"2025-03-27T08:30:59.088Z","avatar_url":"https://github.com/ndbeals.png","language":"Python","readme":"# Keep-Exporter\n[\n![PyPi](https://img.shields.io/pypi/v/keep-exporter)\n![PyPi](https://img.shields.io/pypi/pyversions/keep-exporter)\n![PyPi](https://img.shields.io/pypi/l/keep-exporter)\n](https://pypi.org/project/keep-exporter/)\n\nA command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header. \n\n## Features\n\n * Exports all note types (List and Note)\n * Exports all media attached to notes\n   * Audio, drawings, attached images, etc\n * Sync Keep to directory (keeps directory looking exactly the same as Google Keep)\n * Customizable date format\n   * Easy ISO8601 via `--iso8601`\n * Password or token based authentication\n   * Store your login token to config file with `keep_export savetoken`\n * Note metadata header in yaml frontmatter format\n\n\n## Usage\nIf you do not supply a username or password before running it, you will be prompted to input them.\n```\nUsage: keep_export [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --config FILE                   Read configuration from FILE.  [default: /home/nate/.config/keep-exporter]\n  -u, --user TEXT                 Google account email (prompt if empty)  [env var: GKEEP_USER;required]\n  -p, --password TEXT             Google account password (prompt if empty). Either this or token is required.  [env var: GKEEP_PASSWORD]\n  -t, --token TEXT                Google account token from prior run. Either this or password is required.\n  -d, --directory DIRECTORY       Output directory for exported notes  [default: ./gkeep-export]\n  --header / --no-header          Choose to include or exclude the frontmatter header  [default: header]\n  --delete-local / --no-delete-local\n                                  Choose to delete or leave as-is any notes that exist locally but not in Google Keep  [default: no-delete-local]\n  --rename-local / --no-rename-local\n                                  Choose to rename or leave as-is any notes that change titles in Google Keep  [default: no-rename-local]\n  --date-format TEXT              Date format to prefix the note filenames. Reflects the created date of the note. uses strftime()  [default: %Y-%m-%d]\n  --iso8601                       Format dates in ISO8601 format.\n  --skip-existing-media / --no-skip-existing-media\n                                  Skip existing media if it appears unchanged from the local copy.  [default: skip-existing-media]\n  -h, --help                      Show this message and exit.\n\nCommands:\n  savetoken  Saves the master token to your configuration file.\n```\n\n### Notes\nIf you are using 2 Factor Authentication (2FA) for your google account, you will need to generate an app password for keep. You can do so on your [Google account management page.](https://myaccount.google.com/apppasswords)\n\n\n## Installation\nThere are many ways to install this, easiest is through pip or the releases page.\n\n### Pip\nThe easiest way is with [pip from PyPi](https://pypi.org/project/keep-exporter/)\n```\npip3 install keep-exporter\n```\n\n### Download the Wheel\nDownload the wheel from the [releases page](https://github.com/ndbeals/keep-exporter/releases) and then install with pip:\n```\npip install keep_exporter*.whl\n```\n\n### Building\n#### Download or git clone\n 1. Clone the repository `https://github.com/ndbeals/keep-exporter` or download from the [releases page](https://github.com/ndbeals/keep-exporter/releases) and extract the source code.\n 2. `cd` into the extracted directory\n 3. With [poetry](https://python-poetry.org/) installed, run `poetry install` in the project root directory\n 4. `poetry build` will build the installable wheel\n 5. `cd dist` then run `pip3 install \u003ckeep-exporter-file.whl\u003e`\n\n\n## Troubleshooting\nSome users have had issues with the requests library detailed in [this issue](https://github.com/ndbeals/keep-exporter/issues/1) when using `pipx`. The solution is to change the requests library version.\n```\npipx install keep-exporter \npipx inject keep-exporter requests===2.23.0\n```\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndbeals%2Fkeep-exporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fndbeals%2Fkeep-exporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndbeals%2Fkeep-exporter/lists"}