Metadata-Version: 2.0
Name: gkeepapi
Version: 0.9.0
Summary: An unofficial Google Keep API client
Home-page: https://github.com/kiwiz/gkeepapi
Author: Kai
Author-email: z@kwi.li
License: MIT
Keywords: google keep api
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: gpsoauth (>=0.4.1)
Requires-Dist: six (>=1.11.0)

gkeepapi
========

An unofficial client for the [Google Keep](https://keep.google.com) API.

```
import gkeepapi

keep = gkeepapi.Keep()
success = keep.login('...', '...')
keep.sync()

note = keep.createNote('Todo', 'Eat breakfast')
note.pinned = True
note.color = gkeepapi.COLOR.RED
keep.sync()
```

*gkeepapi is not supported nor endorsed by Google.*

This is alpha quality code! Don't use in production. The project is under active development, so feel free to open an issue if you see any bugs or have a feature request. PRs are welcome too!

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

- Determine how `forceFullSync` works.
- Reminders
    - `reminders`
- Sharing Notes
    - `lastModifierEmail`, `roleInfo`, `timestamps.recentSharedChangesSeen`, `shareState`
- Figure out all possible values for `TaskAssist._suggest`
- Figure out all possible values for `NodeImage._extraction_status`
- Blobs (Drawings/Images/Recordings)


