Python Forum
Newcomer has a project in mind
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Newcomer has a project in mind
#1
Hello,

I am completely inexperienced and new to Python, but have experience with every possible web programming language.

I have the following plan:
- I want to create a booking software with GUI in Python and compile it as EXE after completion.
- All common functions of an accounting software should be available (e.g. writing invoices, recurring invoices, etc.).
- Everything possible should then also be written to a local database.

Now I wanted to ask: Is Python suitable for creating a Windows app? And how difficult is it to implement?

Thanks in advance.
Reply
#2
(Dec-27-2024, 08:29 AM)omexlu Wrote: Now I wanted to ask: Is Python suitable for creating a Windows app? And how difficult is it to implement?

Python is not made to deploy binary files, but it's possible with different tools like PyInstaller or nuitka.

e.G. PyInstaller takes the CPython interpreter and put it together with required dependencies and 3rd party dependencies. But the size of the exe files grows for each dependency. QT5/6 is for example big.

Nuitka is a bit different, it converts Python to C++ and then it compiles it. Also, there are dependencies included.

As GUI libraries, you could use the Tkinter, which is in the Python standard library. If you use it and bundle it with Nuitka or PyInstaller, then it's smaller as you choose to use a QT5/6 wrapper. Each dependency let your bundled exe or directory grow. AFIK PyInstaller uses UPX to pack binaries, but sometimes it's detected as Virus, because hackers are using the same method.

For the start Tkinter is ok, but for better control, PySide6 is convenient. It is a wrapper for QT6, which is the biggest GUI framework I know.

Other GUI libraries:
omexlu, Larz60+, Skaperen like this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Sad SyntaxError: from simple python example file from mind-monitor code (muse 2) warmcupoftea 4 3,872 Jul-16-2021, 02:51 PM
Last Post: warmcupoftea
  Classes are blowing my mind! mcmxl22 5 6,274 Jan-03-2017, 05:01 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020