From 52ad1ea908eea3f9ef0d1503d7e636e29c18320d Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 4 Aug 2016 10:42:29 +0100 Subject: [PATCH] Initial v7 API changes --- nextaction.py | 6 +++--- requirements.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nextaction.py b/nextaction.py index 5aae360..e9f11b7 100755 --- a/nextaction.py +++ b/nextaction.py @@ -66,7 +66,7 @@ def main(): logging.debug('Connecting to the Todoist API') api = TodoistAPI(token=args.api_key) logging.debug('Syncing the current state from the API') - api.sync(resource_types=['projects', 'labels', 'items']) + api.sync() # Check the next action label exists labels = api.labels.all(lambda x: x['name'] == args.label) @@ -80,7 +80,7 @@ def main(): def get_project_type(project_object): """Identifies how a project should be handled.""" name = project_object['name'].strip() - if project['name'] == 'Inbox': + if name == 'Inbox': return args.inbox elif name[-1] == args.parallel_suffix: return 'parallel' @@ -112,7 +112,7 @@ def main(): # Main loop while True: try: - api.sync(resource_types=['projects', 'labels', 'items']) + api.sync() except Exception as e: logging.exception('Error trying to sync with Todoist API: %s' % str(e)) else: diff --git a/requirements.txt b/requirements.txt index 8cdf4ab..2173aea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -todoist-python==0.2.26 \ No newline at end of file +todoist-python>=7.0.10,<8.0.0 \ No newline at end of file