#pyqt6

[ follow ]
JavaScript
fromPython GUIs
4 days ago

PyQt6 Thread Communication Between Windows - Signals and Slots

Use Qt's signal and slot system for safe communication between secondary windows and background threads.
Python
fromPython GUIs
3 months ago

What does @pyqtSlot() do?

Use @pyqtSlot to create native Qt slots for threaded contexts and to reduce memory usage and slightly improve performance; otherwise plain Python callables work.
#python
fromPython GUIs
1 year ago

Multithreading PyQt6 applications with QThreadPool

A common problem when building Python GUI applications is the interface locking up when attempting to perform long-running background tasks.
Running
[ Load more ]