Нет описания

Nathan Beals 4ebd06df03 Bumped version to 1.1. 5 лет назад
keep_exporter 4ebd06df03 Bumped version to 1.1. 5 лет назад
.gitignore 3c476221e2 First commit. 5 лет назад
LICENSE 3c476221e2 First commit. 5 лет назад
README.md 4ebd06df03 Bumped version to 1.1. 5 лет назад
poetry.lock 28b9d9996b Finished image/drawing download (mimetypes too). 5 лет назад
pyproject.toml 4ebd06df03 Bumped version to 1.1. 5 лет назад

README.md

Keep-Exporter

A command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header.

Installation

There are many ways to install this, easiest are through pip or the releases page.

Pip

The easiest way is with pip from PyPi

pip3 install keep-exporter

Download or git clone

  1. Clone the repository https://github.com/ndbeals/keep-exporter or download from the releases page and extract the source code.
  2. cd into the directory
  3. With poetry installed, run poetry install in the project root directory
  4. poetry build will build the installable wheel
  5. cd dist then run pip3 install <keep-exporter-file.whl>

Usage

If you do not supply a username or password before running it, you will be prompted to input them.

keep_export [OPTIONS]
Options:
  -d, --directory TEXT  Output directory for exported notes
  -u, --user TEXT       Google account email (environment variable 'GKEEP_USER')
  -p, --password TEXT   Google account password (environment variable 'GKEEP_PASSWORD')
  --header / --no-header  Choose to include or exclude the frontmatter header (Default: on)

Troubleshooting

Some users have had issues with the requests library detailed in this issue when using pipx. The solution is to change the requests library version.

pipx install keep-exporter 
pipx inject keep-exporter requests===2.23.0