I am looking for some tips here.
I am working on an application where the main processing (stored on the server) is done in C ++ and the GUI (front-end) is done in Python. These two programs will communicate with each other. Python will send the files necessary for the C ++ program to work, and provide the C ++ program with some data to work with them. Then the server will access the processed data.
Would it be better to use Sockets? I thought about this using text files, but, missing this idea, instead it just saves the data as a .txt file so that it can be opened in future instances. Also, if I were using sockets, would there be a conflict using Python / C ++?
Any help or advice would be greatly appreciated.
source
share