This project is a simple task management system that allows users to create, assign, and manage tasks. It is designed to be easy to use and extend, making it suitable for personal or small team use.
task-system-app
├── src
│ ├── __init__.py
│ ├── controller.py
│ ├── data_handler.py
│ ├── models
│ │ ├── __init__.py
│ │ ├── usuario.py
│ │ ├── tarea.py
│ │ └── asignacion.py
│ └── utils
│ └── __init__.py
├── requirements.txt
└── README.md
- Clone the repository:
git clone <repository-url> - Navigate to the project directory:
cd task-system-app - Install the required dependencies:
pip install -r requirements.txt
To run the application, you can create a main script that utilizes the TaskController class from controller.py. Here is a simple example:
python src/controller.pyContributions are welcome! Please feel free to submit a pull request or open an issue for any suggestions or improvements.
This project is licensed under the MIT License. See the LICENSE file for more details.