https://github.com/protik09/movelowprioritylisttoprimarylist
Assuming you maintain a low priority list on Google Keep and a Higher Priority List you'd want to move them to, ticking the box in the Low Priority box moves them to the Higher Priority List
https://github.com/protik09/movelowprioritylisttoprimarylist
gkeep gkeepapi google keep keepnote notes python python3 python311 shopping-list
Last synced: 2 months ago
JSON representation
Assuming you maintain a low priority list on Google Keep and a Higher Priority List you'd want to move them to, ticking the box in the Low Priority box moves them to the Higher Priority List
- Host: GitHub
- URL: https://github.com/protik09/movelowprioritylisttoprimarylist
- Owner: protik09
- License: gpl-3.0
- Created: 2024-01-12T18:12:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-24T01:51:22.000Z (about 1 year ago)
- Last Synced: 2024-04-24T03:31:56.452Z (about 1 year ago)
- Topics: gkeep, gkeepapi, google, keep, keepnote, notes, python, python3, python311, shopping-list
- Language: Python
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.MD
- License: LICENSE
Awesome Lists containing this project
README
# Google Keep Shopping List Organizer
This Python script automates the management of shopping lists in Google Keep by moving ticked items from low-priority lists to a primary shopping list.
## Features
- **Automated List Management:** Automatically moves ticked items from specified low-priority lists to a primary list in Google Keep.
- **First Run Setup:** Guides new users through initial setup, including Google Keep authentication and list configuration.
- **Configurable List Sets:** Supports multiple sets of primary and low-priority lists.
- **Local Caching:** Caches Google Keep notes locally to reduce API calls and speed up operations.
- **Cross-Platform Support:** Works on both Windows and Linux, with additional system tray support on Windows.## Installation Instructions
1. Ensure you have Python 3.x installed on your system.
2. Clone this repository or download the script to your local machine.
3. Install the required Python packages:```bash
pip install -r requirements.txt
```4. Obtain a Google Keep Master Token. Instructions for obtaining this token using the included Dockerfile can be found [HERE](https://github.com/djsudduth/keep-it-markdown/issues/72#issuecomment-1905274630). (This is due to some breaking changes with the OAuth module).
## Usage Examples
To start the script, navigate to the directory containing the script and run:
```bash
python MoveLowPrioritytoShoppingList.py
```On the first run, the script will prompt you for your Google Keep username and master token, as well as the names of your primary and low-priority shopping lists.
## Configuration Options
The script generates a `config.json` file during the first run, which stores:
- Google Keep username
- Number of list sets
- Names of primary and low-priority listsYou can edit this file directly to change your configuration settings.
## Contribution Guidelines
Contributions are welcome! If you'd like to contribute, please:
1. Fork the repository.
2. Create a new branch for your feature or fix.
3. Commit your changes.
4. Push to the branch.
5. Submit a pull request.## Testing Instructions
Currently, there are no automated tests for this script. Manual testing can be done by running the script and verifying that items are correctly moved between lists in Google Keep.
## Acknowledgements/Credits
- **Author:** Protik Banerji
- Thanks to the developers of `gkeepapi`, `keyring`, `maskpass`, `simplejson`, and `infi.systray` for their excellent libraries that made this project possible.## Usage
The script will run in the background, checking for changes to the specified shopping lists every 0.5 seconds.
## License
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.