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.
- Host: GitHub
- URL: https://github.com/michellesanseverino/task-management-practice
- Owner: michellesanseverino
- Created: 2026-02-24T17:49:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-24T18:44:07.000Z (5 months ago)
- Last Synced: 2026-03-26T19:55:45.782Z (4 months ago)
- Topics: crud-application, json, localstorage, pyhton, task-manager
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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
```