A simple task management system made in Python Programming Language that allows you to store task in a JSON file.
{ "tasks": [ { "title": "", "description": "", "status": "", "categories": [] } }
- Python
To run the program on your local machine follow these steps.
- Code Editor
- VS Code, Notedpad, etc.
- Download and Install Python
- Download latest version of Python for your machine from this link: https://www.python.org/downloads/
- Create JSON file with the following schema:
{ "tasks": [ { "title": "", "description": "", "status": "", "categories": [] } }
- Open task.py and update 'fileLocation' variable value to the path on where your JSON file is located
- Run the task.py
- Choose either of the following keys to navigate on the app:
- Add Task
- For Adding task supply the following data:
- Title
- Description
- Category
- For Adding task supply the following data:
- View Tasks
- Update Task
- Choose the approriate keys to update the data for each task:
- Title (1)
- Description (2)
- Status (3)
- Category (4)
- Choose the approriate keys to update the data for each task:
- Remove Task
- Exit Program