PaulFroh / bank-account-statement-parser

A simple program to transfer your bank statements into an excel file. The program can recognise and assign simple keywords in the transactions and offers a simple GUI to select the pdfs and excel file.
MIT License
0 stars 0 forks source link

Making a Windows installer for a faster boot up #7

Open PaulFroh opened 1 year ago

PaulFroh commented 1 year ago

When making only an EXE file, the boot up is very long, because of the antivirus system and the unpacking of all the modules that are needed to run the application. When the application is built as a folder, the boot up is so much faster, but you need a hole folder for the program and that can confuse the user. Building a small installation program, this would be fixed.

When doing so, a little updater is also needed

PaulFroh commented 1 year ago

https://www.pythonguis.com/tutorials/packaging-pyside6-applications-windows-pyinstaller-installforge/

This tutorial is maybe what we need