This is a to-do list application. Basic CRUD using a graphical interface in Python.
- Add new task
- Edit task
- Delete single task
- Show task
- Change status task
- python
- Tkinter
- SQLAlchemy
- SQLite
- Git
- Layered architecture pattern
-
python -m venv <Environment name>: Create the virtual Environment. -
Linux :
source env/bin/activate| Windows :env\Scripts\activate: We activate the virtual environment. -
pip install -r requirements.txt: We recreate the virtual environment. -
python main.py: to run.
