()
| 59 | |
| 60 | # Determine if this app is running as a python script or an installed binary (PyInstaller) |
| 61 | def is_binary_app(): |
| 62 | # see: https://pyinstaller.readthedocs.io/en/stable/runtime-information.html#run-time-information |
| 63 | return getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS') |
| 64 | |
| 65 | |
| 66 | def __version_compare(v1, v2): |