Compare commits

...

34 Commits
v1.3 ... master

Author SHA1 Message Date
earnest ma 9949984269
Add systemd service file 2022-05-19 21:25:26 -04:00
earnest ma 13eb8ad46a
Add script to run 2022-05-19 15:02:43 -04:00
Hoffelhas 67935a5b0c
Update README.md 2021-08-24 14:53:59 +02:00
Hoffelhas 5f3fef0e8f
Update README.md 2021-01-25 19:50:42 +01:00
Hoffelhas 50c126b332
Update README.md 2021-01-25 19:49:24 +01:00
Hoffelhas 11f9830fea
Update README.md 2021-01-25 19:48:45 +01:00
Hoffelhas 0215af31fd
Update README.md 2021-01-25 18:27:07 +01:00
Hoffelhas a38f14e40c
Update README.md 2021-01-25 18:25:28 +01:00
Hoffelhas 319171251f
Update README.md 2021-01-25 18:21:50 +01:00
Hoffelhas c7ab4e564c v1.5 2021-01-25 18:00:43 +01:00
Hoffelhas d129885bbc setup.py update 2021-01-23 21:53:17 +01:00
Hoffelhas 097ea0caae Updated todoist-python to version 8.1.3 and added requests 2.25.1 2021-01-23 21:48:19 +01:00
Hoffelhas 4c421b7577 Fixed bug with incorrect label recognition. Added new debug logging lines, and removed redundant ones 2021-01-23 21:29:06 +01:00
Hoffelhas a4ac562068 Made -r tag backwards compatible with v1.4 2021-01-17 15:14:33 +01:00
Hoffelhas bd9e5d021b Fixed a view bugs for the new regeneration mode, plus some additional clean-up of code. In addition fixed a labelling bug on deeper levels, and headered items will be cleaned of old next-action labels. 2021-01-17 14:58:14 +01:00
Hoffelhas f97c7e70e0 Implemented new structure for regeneration mode. New modes have been added, and specific modes can be assigned to tasks by use of labels. 2021-01-16 22:42:46 +01:00
Hoffelhas 376e176d6b General clean-up of code 2021-01-16 17:14:22 +01:00
Hoffelhas 17cc3a8418 Wrong warning message was given for a different kind of wrong syntax; additional warning added. 2021-01-16 15:54:21 +01:00
Hoffelhas 16d404a9ed Fixed bug which caused a wrong read of the start=DATE string 2020-12-31 16:02:58 +01:00
Hoffelhas 22fab54dfc
Update README.md 2020-12-30 14:22:33 +01:00
Hoffelhas d1f6ac802c
Update README.md 2020-12-30 14:12:56 +01:00
Hoffelhas ea20ad2aa1 Clean-up for v1.4 2020-12-30 13:46:20 +01:00
Hoffelhas ecbe8a28fa Added logic to header or unheader multiple items, specifiec from project, section, or top item level 2020-12-30 13:21:16 +01:00
Hoffelhas 346702b904 Debug header_items 2020-12-30 01:32:17 +01:00
Hoffelhas 3e14d69653 Added possibility to define start-date as an offset from due-date. 2020-12-30 00:35:07 +01:00
Hoffelhas 41c3cc3b5c Tested new section logic. In addition 'delay' has been optimised by taking computation time into account. General clean-up of code 2020-12-29 22:56:55 +01:00
Hoffelhas c50f62d946 Sections refactoring completed. Next up, code-cleanup and testing 2020-12-28 23:18:54 +01:00
Hoffelhas 3943c5c614 Pseudocode updated, section loop build-in, still need to build a class to handle 'no section' tasks, and finalize labeling logic 2020-12-17 21:02:30 +01:00
Hoffelhas a913c74086 Decided to add a separate section loop to allow for a better flow of the logic. Initial start made, still needs to be fleshed out. 2020-12-16 22:05:27 +01:00
Hoffelhas 6d3439019c Continued work on section labelling 2020-12-07 22:45:12 +01:00
Hoffelhas c1b14f55ac Added section type functionality. Still needs incorporation with label logic 2020-12-07 17:44:12 +01:00
Hoffelhas 70567cacf5 Initial modifications to include section type 2020-12-06 23:08:47 +01:00
Hoffelhas 0d18c8c8b6
Update README.md 2020-09-25 13:59:54 +02:00
Hoffelhas f3bd20cf8c
Update README.md 2020-06-15 19:01:23 +02:00
6 changed files with 998 additions and 534 deletions

View File

@ -1,12 +1,13 @@
# Autodoist
This program adds three major functionalities to Todoist to help automate your workflow:
This program adds four major functionalities to Todoist to help automate your workflow:
1) Assign automatic next-action labels for a more GTD-like workflow
- Flexible options to label tasks sequentially or in parallel
- Limit labels based on a start-date or hide future tasks based on the due date
2) Enable regeneration of sub-tasks in lists with a recurring date
2) Enable regeneration of sub-tasks in lists with a recurring date. Multiple modes possile.
3) Postpone the end-of-day time to after midnight to finish your daily recurring tasks
4) Make multiple items (un)checkable at the same time
If this tool helped you out, I would really appreciate your support by providing me with some coffee!
@ -16,36 +17,49 @@ If this tool helped you out, I would really appreciate your support by providing
# Requirements
* Python 3.8
* ```todoist-python``` package.
Autodoist has been build with Python 3.9.1, which is the recommended version. Older versions of 3.x should be compatible, however be aware that they have not been tested.
To run Autodoist the following packages are required:
* ```todoist-python```
* ```requests```
For your convenience a requirements.txt is provided, which allows you to install them by using pip:
`pip install -r requirements.txt`
# 1. Automatic next action labels
The program looks for pre-defined tags in the name of every project and parentless tasks in your Todoist account to automatically add and remove `@next_action` labels.
The program looks for pre-defined tags in the name of every project, section, or parentless tasks in your Todoist account to automatically add and remove `@next_action` labels. To create a simple list of all your next actions you can add a new filter in your Todoist with e.g.: @next_action & #project_name.
Projects and parentless tasks can be tagged independently from each other to create the required functionality. If this tag is not defined, it will not activate this functionality. The result will be a clear, current and comprehensive list of next actions without the need for further thought.
Projects, sections, and parentless tasks can be tagged independently from each other to create the required functionality. If this tag is not defined, it will not activate this functionality. The result will be a clear, current and comprehensive list of next actions without the need for further thought.
See the example given at [running autodoist](#running-autodoist) on how to run this mode. If the label does not exist yet in your Todoist, a possibility is given to automatiacally create it. Todoist Premium is required in order to use labels and to make this functionality possible.
See the example given at [running Autodoist](#running-autodoist) on how to run this mode. If the label does not exist yet in your Todoist, a possibility is given to automatically create it. Todoist Premium is required in order to use labels and to make this functionality possible.
## Useful filter tip
For a more GTD-like workflow, you can use Todoist filters to create a clean and cohesive list that only contains your actionable tasks. As a simple example you could use the following filter:
`@next_action & #PROJECT_NAME`
## Sequential processing
If a project or parentless task ends with `--`, both the parentless tasks and its sub-tasks will be treated as a priority queue and the most important will be labeled. Importance is determined by order in the list.
If a project, section, or parentless task ends with `--`, both the parentless tasks and its sub-tasks will be treated as a priority queue and the most important will be labeled. Importance is determined by order in the list.
![Serial task](https://i.imgur.com/SUkhPiE.gif)
## Parallel processing
If a project or parentless task name ends with `//`, both the parentless tasks and its sub-tasks will be treated as parallel. A waterfall processing is applied, where the lowest possible sub-tasks are labelled.
If a project, section, or parentless task name ends with `//`, both the parentless tasks and its sub-tasks will be treated as parallel. A waterfall processing is applied, where the lowest possible sub-tasks are labelled.
![Parallel task](https://i.imgur.com/NPTLQ8B.gif)
## Added labelling flexibility
## Advanced labelling
If a project ends with `-/`, all parentless tasks are processed sequentially, and its sub-tasks in parallel.
If a project or section ends with `-/`, all parentless tasks are processed sequentially, and its sub-tasks in parallel.
[See example](https://i.imgur.com/uGJFeXB.gif)
If a project ends with `/-`, all parentless tasks are processed in parallel, and its sub-tasks sequentially.
If a project or section ends with `/-`, all parentless tasks are processed in parallel, and its sub-tasks sequentially.
[See example](https://i.imgur.com/5lZ1BVI.gif)
@ -55,12 +69,14 @@ Any parentless task can also be be given a type by appending `//` or `--` to the
[See example 2 with a serial project](https://i.imgur.com/JfaAOzZ.gif)
Note: Todoist sections don't like to have a slash in the name, it will automatically change to an underscore. The default label options will recognize this to make it work regardless. Of course you're always free to define your own custom label symbols.
## Start/Due date enhanced experience
Two methods are provided to hide tasks that are not relevant yet.
- Prevent labels by defining a start-date. The label is only assigned if this date is reached. A start date can be added to a task by adding 'start-date=DD-MM-YYYY'.
[See an example of using start-dates](https://i.imgur.com/WJRoJzW.png).
- Prevent labels by defining a start-date that is added to the task itself. The label is only assigned if this date is reached. You can define the start-date by adding 'start=DD-MM-YYYY'. On the other hand the start date can be defined as several days or weeks before the due-date by using either 'start=due-<NUMBER_OF_DAYS>d' or 'start=due-<NUMBER_OF_WEEKS>w'. This is especially useful for recurring tasks!
[See an example of using start-dates](https://i.imgur.com/WJRoJzW.png).
- Prevent labels of all tasks if the due date is too far in the future. Define the amount by running with the argument '-hf <NUMBER_OF_DAYS>'.
[See an example of the hide-future functionality](https://i.imgur.com/LzSoRUm.png).
@ -71,29 +87,44 @@ The program looks for all parentless tasks with a recurring date. If they contai
![See example](https://i.imgur.com/WKKd14o.gif)
To give you more flexibility, multiple modes are provided:
1. No regeneration
2. Checking the main task regenerates all sub-tasks
3. Checking the main task regenerates all sub-tasks only if all sub-tasks have been checked first
When this functionality is activated, it is possible to chose which mode is used as overall functionality for your Todoist. See the example given at [running Autodoist](#running-autodoist).
In addition you can override the overall mode by adding the labels `Regen_off`, `Regen_all`, or `Regen_all_if_completed` to one of your main recurrings task. These labels will automatically be created for you.
# 3. Postpone the end-of-day
You have a daily recurring task, but you're up working late and now it's past midnight. Todoist will automatically mark it overdue and when you check it, it moved to tomorrow. After a good nights rest you can't complete the task that day!
You have a daily recurring task, but you're up working late and now it's past midnight. When this happens Todoist will automatically mark it overdue, and when checked by you it moves to tomorrow. This means that after a good nights rest you can't complete the task that day!
By setting an alternative time for the end-of-day you can now finish your work after midnight and the new date will automatically be corrected for you. Todoist Premium is not required for this functionality.
![See example 1](https://i.imgur.com/tvnTMOJ.gif)
# 4. Make multiple items uncheckable / re-checkable at the same time
Todoist allows the asterisk symbol `* ` to be used to ensure tasks can't be checked by turning them into headers. Now you are able to do this en masse!
Simply add `** ` or `!* ` in front of a project, section, or top item, to automatically turn all the items that it includes into respectively headers or checkable tasks. Note: when used in a project title or section title, Todoist will replace an exclamation mark with an underscore; this functionality should nevertheless still work.
# Executing Autodoist
You can run Autodoist from any system that supports Python.
## Running Autodoist
Autodoist will read your environment to retrieve your Todoist API key and additional arguments. In order to run on Windows/Linux/Mac OSX you can use the following commandlines.
Autodoist will read your environment to retrieve your Todoist API key and additional arguments. In order to run on Windows/Linux/Mac OSX you can use the following command lines.
If you want to enable labelling mode, run with the `-l` argument:
python autodoist.py -a <API Key> -l <LABEL_NAME>
If you want to enable regeneration of sub-tasks in recurring lists, run with the `-r` argument:
If you want to enable regeneration of sub-tasks in recurring lists, run with the `-r` argument followed by a mode number for the overall functionality (1: no regeneration, 2: regenerate all, 3: regenerate ony if all sub-tasks are completed):
python autodoist.py -a <API Key> -r
python autodoist.py -a <API Key> -r <NUMBER>
If you want to enable an alternative end-of-day, run with the `-e` argument and a number from 1 to 24 to specify which hour:

File diff suppressed because it is too large Load Diff

17
autodoist.service Normal file
View File

@ -0,0 +1,17 @@
[Unit]
Description=Autodoist
After=syslog.target
After=network.target
[Service]
RestartSec=5s
Type=simple
User=earne
Group=earne
WorkingDirectory=/home/earne/autodoist
ExecStart=/home/earne/autodoist/run.sh
Restart=always
# Environment=
[Install]
WantedBy=multi-user.target

View File

@ -1 +1,2 @@
todoist-python>=8.1.1
requests>=2.25.1
todoist_python>=8.1.3

14
run.sh Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
if [ ! -d venv ]; then
echo "Creating virtualenv and installing requirements"
python3 -m venv venv
venv/bin/pip3 install -r requirements.txt
fi
venv/bin/python3 autodoist.py \
-a $(cat .api-token) \
-l Next \
-r 2 \
-e 1 \
--delay 7

View File

@ -2,14 +2,15 @@ from setuptools import setup
setup(
name='autodoist',
version='1.0',
version='1.5',
py_modules=['autodoist'],
url='https://github.com/Hoffelhas/automation-todoist',
license='MIT',
author='Alexander Haselhoff',
author_email='alexander.haselhoff@outlook.com',
description='Added functionality for Todoist: 1) next-action labels and 2) re-use recurring sub-tasks',
description='Added functionality for Todoist: 1) next-action labels, 2) sub-task regeneration, 3) postpone end of day, and 4) (un)header items simultaneously)',
install_requires=[
'todoist-python',
'requests',
]
)