An open API service indexing awesome lists of open source software.

https://github.com/michellesanseverino/task-management-practice

Task manager made in Python.
https://github.com/michellesanseverino/task-management-practice

crud-application json localstorage pyhton task-manager

Last synced: 3 months ago
JSON representation

Task manager made in Python.

Awesome Lists containing this project

README

          

# Task Management Practice
This project is a practice repository. I created this programm to study and practice my knowledge in Python.

## Objectives
- Add tasks
- Edit tasks
- Organize tasks
- Conclude tasks
- Exclude tasks

## Technologies used
- Language: Python
- IDE: VSCode
- Support: Claude
- Documentation: [Python Documentation](https://docs.python.org/3/)

## Structure
```
task_management_practice/

├── main.py # Entry point
├── tasks.py # Tasks
├── storage.py # Reading and Writing using JSON
├── tasks.json # Local database
├── templates/
└── index.html # Web interface
└── README.md # Documentation
```