#pyqt6

[ follow ]
Python
fromPython GUIs
2 weeks 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
Running
fromPython GUIs
9 months ago

Multithreading PyQt6 applications with QThreadPool

Use concurrent execution techniques in PyQt6 to prevent the GUI from freezing during long-running tasks.
[ Load more ]