This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This will find all Tasks with a specific Label, remove that Label, and add another specified Label. | |
Make sure you add your API token to `data/token.txt`! | |
You'll need the Python SDK for this to work: | |
https://developer.todoist.com/rest/v2/#python-sdk | |
""" | |
import uuid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Make sure you add your API token to `data/token.txt`! | |
""" | |
import sys | |
import uuid | |
import requests | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Put your token in data/token.txt. | |
Completed items are written to `output/completed_items.py` as a Python dictionary. | |
Reference: https://developer.todoist.com/sync/v9/#get-all-completed-items | |
""" | |
import requests | |