Qt c++ <---> Python communication methods
-
I need help on the method to communicate between Qt c++ and Python process. Ideas are helpful.
-
I need help on the method to communicate between Qt c++ and Python process. Ideas are helpful.
Use Inter-process communication APIs: (local) Sockets or FIFOs.
Especially sockets are available in all programming environments, e.g.
QLocalSocket
orQTcpSocket
.