https://github.com/gaul/gkeep-fuse
FUSE interface for Google Keep
https://github.com/gaul/gkeep-fuse
filesystem fuse google-keep
Last synced: 8 months ago
JSON representation
FUSE interface for Google Keep
- Host: GitHub
- URL: https://github.com/gaul/gkeep-fuse
- Owner: gaul
- License: mit
- Created: 2019-10-08T06:03:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-17T00:21:31.000Z (over 6 years ago)
- Last Synced: 2025-07-14T03:35:40.219Z (8 months ago)
- Topics: filesystem, fuse, google-keep
- Language: Python
- Size: 27.3 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# gkeep-fuse
FUSE interface for [Google Keep](https://www.google.com/keep/). Supports
listing, creating, reading, writing, renaming, and removing notes. Notes use
titles for the file names when present and an internal Keep identifier when
absent.
## Installation
```
pip install -r requirements.txt
```
## Usage
Create a file with your Google credentials:
```
```
Then run via:
```
./gkeep_fuse.py --auth /path/to/auth.txt mnt/
```
You can also use the `GOOGLE_KEEP_USER` and `GOOGLE_KEEP_PASSWORD` environment
variables.
If you use two-factor authentication you should use an
[app password](https://myaccount.google.com/apppasswords), see
[kiwiz/gkeepapi#20](https://github.com/kiwiz/gkeepapi/issues/20).
## References
* [gkeep](https://github.com/Nekmo/gkeep) provides command-line access to Keep notes
* [gkeepapi](https://github.com/kiwiz/gkeepapi) provides Keep API access
## License
* MIT