Skip to main content
This document describes all available (and planned) commands for the Todo CLI X application.

Commands overview

This table summarizes the available commands for the Todo CLI X application.
Note
  • --done and --undone cannot be used together.
  • --priority and --sort can be combined or used independently.
  • Valid priority levels are: low, medium, and high (default: medium).

Examples

Notes

  • All commands are subcommands defined with argparse in main.py
  • --tags can be used in add, edit, and list commands.
  • The edit command lets you update one or more fields of an existing task.
  • Each command maps to a function in core.py
  • The CLI is easily extensible: just add a parser and a corresponding function call.