gkeepapi


Namegkeepapi JSON
Version 0.15.1 PyPI version JSON
download
home_page
SummaryAn unofficial Google Keep API client
upload_time2023-12-12 06:30:42
maintainer
docs_urlNone
author
requires_python>=3.10
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            gkeepapi
========

[![Documentation Status](https://readthedocs.org/projects/gkeepapi/badge/?version=latest)](http://gkeepapi.readthedocs.io/en/latest/?badge=latest)
[![Gitter chat](https://badges.gitter.im/gkeepapi/Lobby.png)](https://gitter.im/gkeepapi/Lobby)
[![Test Coverage](https://api.codeclimate.com/v1/badges/4386792a941a156a14f0/test_coverage)](https://codeclimate.com/github/kiwiz/gkeepapi/test_coverage)

## NOTICE: Google offers an official [API](https://developers.google.com/keep/api) which might be an option if you have an Enterprise account. 🎉

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

```python
import gkeepapi

keep = gkeepapi.Keep()
success = keep.login('user@gmail.com', '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](https://gkeepapi.readthedocs.io/en/latest/).

## 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)


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "gkeepapi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Kai <z@kwi.li>",
    "download_url": "",
    "platform": null,
    "description": "gkeepapi\n========\n\n[![Documentation Status](https://readthedocs.org/projects/gkeepapi/badge/?version=latest)](http://gkeepapi.readthedocs.io/en/latest/?badge=latest)\n[![Gitter chat](https://badges.gitter.im/gkeepapi/Lobby.png)](https://gitter.im/gkeepapi/Lobby)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/4386792a941a156a14f0/test_coverage)](https://codeclimate.com/github/kiwiz/gkeepapi/test_coverage)\n\n## NOTICE: Google offers an official [API](https://developers.google.com/keep/api) which might be an option if you have an Enterprise account. \ud83c\udf89\n\nAn unofficial client for the [Google Keep](https://keep.google.com) API.\n\n```python\nimport gkeepapi\n\nkeep = gkeepapi.Keep()\nsuccess = keep.login('user@gmail.com', 'password')\n\nnote = keep.createNote('Todo', 'Eat breakfast')\nnote.pinned = True\nnote.color = gkeepapi.node.ColorValue.Red\nkeep.sync()\n```\n\n*gkeepapi is not supported nor endorsed by Google.*\n\nThe 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!\n\n## Installation\n\n`pip install gkeepapi`\n\n## Documentation\n\nThe docs are available on [Read the Docs](https://gkeepapi.readthedocs.io/en/latest/).\n\n## Todo (Open an issue if you'd like to help!)\n\n- Reminders\n    - `reminders`\n- Figure out all possible values for `TaskAssist._suggest` (Same as CategoryValue?)\n- Figure out all possible values for `NodeImage._extraction_status` (integer)\n- Blobs (Drawings/Images/Recordings)\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "An unofficial Google Keep API client",
    "version": "0.15.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/kiwiz/gkeepapi/issues",
        "Homepage": "https://github.com/kiwiz/gkeepapi"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3c51dd63bdb0f3bfd553e91083829805371bb9ba86c087f34fd1b2261415477",
                "md5": "3100e1c3d42fa22aedc348e1d7d00d7a",
                "sha256": "77d878820ca9773e091089f03f736044250e95898468c5a1328ab50ce03fc6c8"
            },
            "downloads": -1,
            "filename": "gkeepapi-0.15.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3100e1c3d42fa22aedc348e1d7d00d7a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 22452,
            "upload_time": "2023-12-12T06:30:42",
            "upload_time_iso_8601": "2023-12-12T06:30:42.623389Z",
            "url": "https://files.pythonhosted.org/packages/c3/c5/1dd63bdb0f3bfd553e91083829805371bb9ba86c087f34fd1b2261415477/gkeepapi-0.15.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-12 06:30:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kiwiz",
    "github_project": "gkeepapi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gkeepapi"
}
        
Elapsed time: 0.16324s