Estexare GUI app using Python and PySide (PyQt)
Needs PySide6
to run, download from:
PySide6
Or install it using pip:
pip install PySide6
If you want make a single executable file (like the releases):
# install the pyinstaller
pip install PyInstaller
# make the executable
pyinstaller --add-data 'db.db:.' -F main.py
# make the executable for non *nix systems (e.g. Windows)
pyinstaller --add-data 'db.db;.' -F main.py