Added functionality for Todoist.
 
 
Go to file
Andrew Williams 5554c636d9 Stop removing/readding of next_action for future items. 2015-09-04 23:40:15 +01:00
.gitignore Add Heroku support. 2014-11-15 19:38:44 +00:00
LICENSE Updated license and took a first stab at preliminary documentation. 2014-03-09 21:09:57 -07:00
Procfile Add Heroku support. 2014-11-15 19:38:44 +00:00
README.md Update README. 2015-08-29 18:42:54 +01:00
app.json Add support for the parallel/serial suffixes to be configurable. 2015-08-29 18:24:19 +01:00
nextaction.py Stop removing/readding of next_action for future items. 2015-09-04 23:40:15 +01:00
requirements.txt First pass at conversion to todoist-python library. 2015-05-01 01:02:50 +01:00
setup.py Add setup.py, proper CLI interface. 2015-08-29 19:15:09 +01:00

README.md

NextAction

A more GTD-like workflow for Todoist. Uses the REST API to add and remove a @next_action label from tasks.

This program looks at every list in your Todoist account. Any list that ends with - or = is treated specially, and processed by NextAction.

Note that NextAction requires Todoist Premium to function properly, as labels are a premium feature.

Requirements

  • Python 2.7, Python 3.0+ is unsupported at the moment
  • todoist-python package.

Activating NextAction

Sequential list processing

If a list ends with -, the top level of tasks will be treated as a priority queue and the most important will be labeled @next_action. Importance is determined by order in the list

Parallel list processing

If a list name ends with =, the top level of tasks will be treated as parallel @next_actions. The waterfall processing will be applied the same way as sequential lists - every parent task will be treated as sequential. This can be overridden by appending = to the name of the parent task.

Executing NextAction

You can run NexAction from any system that supports Python, and also deploy to Heroku as a constant running service

Running NextAction

NextAction will read your environment to retrieve your Todoist API key, so to run on a Linux/Mac OSX you can use the following commandline

TODOIST_API_KEY="XYZ" python nextaction.py

Heroku Support

Deploy

This package is ready to be pushed to a Heroku instance with minimal configuration values:

  • TODOIST_API_KEY - Your Todoist API Key
  • TODOIST_NEXT_ACTION_LABEL - The label to use in Todoist for next actions (defaults to next_action)
  • TODOIST_SYNC_DELAY - The number of seconds to wait between syncs. (defaults to 5)
  • TODOIST_INBOX_HANDLING - What method to use for the Inbox, sequence or parallel (defaults to parallel)
  • TODODIST_PARALLEL_SUFFIX - What sequence of characters to use to identify parallel processed projects (defaults to =)
  • TODODIST_SERIAL_SUFFIX - What sequence of characters to use to identify serial processed projects (defaults to -)