Skip to content
forked from kiwiz/gkeepapi

An unofficial client for the Google Keep API.

License

Notifications You must be signed in to change notification settings

seanpmcb/gkeepapi

This branch is 14 commits behind kiwiz/gkeepapi:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

47b9a2b ยท Sep 27, 2023
May 23, 2023
Sep 27, 2023
Feb 26, 2022
Sep 21, 2023
Feb 8, 2022
Dec 26, 2019
Apr 5, 2023
Sep 27, 2023
Dec 29, 2020
Nov 5, 2017
Sep 21, 2023
Sep 27, 2023
Sep 27, 2023

Repository files navigation

gkeepapi

Documentation Status Gitter chat Test Coverage

NOTICE: Google offers an official API which might be an option if you have an Enterprise account. ๐ŸŽ‰

An unofficial client for the Google Keep API.

import gkeepapi

keep = gkeepapi.Keep()
success = keep.login('[email protected]', 'password')

note = keep.createNote('Todo', 'Eat breakfast')
note.pinned = True
note.color = gkeepapi.node.ColorValue.Red
keep.sync()

gkeepapi is not supported nor endorsed by Google.

The code is pretty stable at this point, but you should always make backups. The project is under development, so feel free to open an issue if you have questions, see any bugs or have a feature request. PRs are welcome too!

Installation

pip install gkeepapi

Documentation

The docs are available on Read the Docs.

Todo (Open an issue if you'd like to help!)

  • Reminders
    • reminders
  • Figure out all possible values for TaskAssist._suggest (Same as CategoryValue?)
  • Figure out all possible values for NodeImage._extraction_status (integer)
  • Blobs (Drawings/Images/Recordings)

About

An unofficial client for the Google Keep API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Makefile 0.3%