Skip to content

Latest commit

 

History

History
90 lines (67 loc) · 1.6 KB

README.md

File metadata and controls

90 lines (67 loc) · 1.6 KB

taskmaster

TaskMaster

TaskMaster is a simple command-line task management application written in Python.

Features

  • Add tasks with descriptions and priorities.
  • Mark tasks as completed.
  • Display tasks with their statuses.

Usage

  1. Clone the repository:

    git clone https://github.com/Ravenium22/TaskMaster.git
  2. Navigate to the project directory:

    cd TaskMaster
  3. Run the taskmaster.py script:

    python taskmaster.py
  4. Follow the on-screen instructions to interact with TaskMaster.

Example

Here's an example of how you can use TaskMaster:

  1. Add tasks:

    TaskMaster - Command Menu:
    1. Add Task
    2. Complete Task
    3. Display Tasks
    4. Exit
    Enter your choice: 1
    Enter task description: Complete README.md
    Enter task priority: High
    
  2. Display tasks:

    TaskMaster - Command Menu:
    1. Add Task
    2. Complete Task
    3. Display Tasks
    4. Exit
    Enter your choice: 3
    1. [Pending] Complete README.md (Priority: High)
    
  3. Complete a task:

    TaskMaster - Command Menu:
    1. Add Task
    2. Complete Task
    3. Display Tasks
    4. Exit
    Enter your choice: 2
    Enter task index to complete: 1
    
  4. Exit TaskMaster:

    TaskMaster - Command Menu:
    1. Add Task
    2. Complete Task
    3. Display Tasks
    4. Exit
    Enter your choice: 4
    

License

This project is licensed under the MIT License.


Feel free to contribute to this project by opening issues or submitting pull requests. Happy task managing!