This is a fork of google-keep-scraper from jconti : https://github.com/jcontini/google-keep-scraper
This repo is a project repo, it does work but with minimal functionnalities for the moment.
Apparently there's no simple way to export your notes from Google Keep to other notes apps. This script accepts the Keep folder Google Takeout archive, and outputs all of the Keep notes as a txt file compatible with an import for Scarlett Notes app (https://github.com/BijoySingh/Scarlet-Notes).
This is done independently from Scarlet-Notes app development.
- Clone or download this repository
- Open a terminal to the repository folder (
keep-to-scarletnotes
) - Run
pip install -r requirements.txt
to install dependencies
First we need to download all the Keep files through Google Takeout.
- Go to Google Takeout
- Make sure the 'Keep' checkbox is selected (you can deselect all others)
- Download and export the archive to a folder that has the 'Keep' folder
- Move the
Keep
folder into this folder, so it's alongsidekeep.py
- Run
python keep.py
- All of your Keep notes should be exported to txt in the same file.
- Copy this file in your mobile
- From Scarlet Notes, go on the gear to enter parameters and import, then select the txt file you copied
Congratulations, you just finished to import Google Keep notes to your Scarlet Notes app !
If you get an error about a missing dependency, be sure to run pip install -r requirements.txt
prior to running the script so that it can download the dependencies needed.**
This repo is a project repo, it does work but with minimal functionnalities for the moment.