This is an app that allows you to keep track of your TO-DOs through simple commands.
You only need Python3 to run the code.
To-Do List Application
options: -h, --help show this help message and exit --add TASK Add a new task --view View all tasks --delete INDEX Delete a task by its index
Example:
$ python app.py --add "finish homework" # add a task to do
$ python app.py --view # see that it was saved
Task 1: finish homework
$ python app.py --delete 1 # delete the task
$ python app.py --view # confirm that task was deleted
Features
Add a Task: Easily add new tasks.
View Tasks: Get a list of all your tasks.
Delete a Task: Remove tasks that are no longer needed.
Complete a Task: Mark tasks as completed.
Edit a Task: Update the details of your tasks.
Team
Student A - Student B -