-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile tree.txt
More file actions
20 lines (20 loc) · 934 Bytes
/
file tree.txt
File metadata and controls
20 lines (20 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
your_app/
├── main.py # Entry point of your app
├── requirements.txt # List of dependencies
├── README.md # Project overview
├── data/
│ └── app_data.db # SQLite database file
├── ui/
│ ├── main_window.ui # Qt Designer .ui file
│ └── ui_main_window.py # Converted .py file (if using PyQt5)
├── resources/
│ └── logo.png # Images, icons, etc.
├── app/
│ ├── __init__.py
│ ├── logic.py # Your business logic
│ ├── database.py # DB connection and queries
│ └── ui_main.py # UI class (wraps Designer UI)
├── utils/
│ └── helpers.py # Utility functions
├── env/ or venv/ # Virtual environment (not committed)
└── launch_designer.bat # Optional: Open Qt Designer