• Stars
    star
    1,511
  • Rank 31,023 (Top 0.7 %)
  • Language
    Python
  • License
    MIT License
  • Created about 7 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An unofficial client for the Google Keep API.

gkeepapi

Documentation Status Build 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)