Skip to content

Latest commit

 

History

History
43 lines (40 loc) · 1.05 KB

File metadata and controls

43 lines (40 loc) · 1.05 KB

BalanceMaster

A school project : Building a banking app allowing all basics and some advanced operations - using python and CustomTkinter

myapp/ ├── app.py ├── gui/ │ ├── init.py │ ├── main_window.py │ ├── dialogs/ │ │ ├── init.py │ │ ├── login_dialog.py │ │ └── settings_dialog.py │ └── resources/ │ ├── images/ │ │ ├── logo.png │ │ └── icon.png │ └── config.ini ├── backend/ │ ├── init.py │ ├── database.py │ ├── models.py │ └── utils.py └── README.md

myapp/ ├── app.py ├── frontend/ │ ├── init.py │ ├── Login.py │ └── ├── backend/ │ ├── │ ├── database.py │ └── utils.py
│── controllers/ │ ├──AuthController ├ ├──__init__.Py ├ └──database │ Models │ │──__init__.py │ └──Customer └── README.md