Wiki
Home

Taskwarrior

Examples

- Project:
  
    ```
    task add project:name description
    task 50 modify project:name
    ```
- Tags:
  
    ```
    task add +tag description
    task 50 edit
    ```
- Filter
  
    ```
    task project:name list
    ```
- Dependency:
  
    ```
    task 50 modify depends:51
    ```
- Searching:
  
    ```
    task /note/ list
    ```
- Filter for empty project and tags:
  
    ```
    task project: tag:
    ```

Tasklib

- <https://tasklib.readthedocs.io/en/latest/>
        import tasklib
  
        tw = tasklib.TaskWarrior()
        new_task = tasklib.Task(tw, description="throw out the trash")
        new_task.save()