gitextract_wq3pe4ix/ ├── .bumpversion.cfg ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── pip-rating.yml │ └── publish.yml ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── authors.rst │ ├── conf.py │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── readme.rst │ └── usage.rst ├── google_keep_tasks/ │ ├── __init__.py │ ├── _compat.py │ ├── auth.py │ ├── cli.py │ ├── exceptions.py │ ├── items.py │ ├── labels.py │ ├── management.py │ ├── notes.py │ └── utils.py ├── requirements-dev.txt ├── requirements.txt ├── scripts/ │ └── gkeep └── setup.py