I have an object in Python. This object contains fields of data, that I want to pass to a c++ executable.
I have the source code of this executable.
When I run the executable I want the executable to get the data from my python object, and do calculations with it.
Is this possible using python and C++? If yes what is a good way to do it.