i’ve been working for some time on a personal project that was scattered in many sub-programs and i think it’s time to bring everything together to make a software on visual studio. i’ve tried on several types of project that VS offers in c++ but each time, i can’t import .py files into the c++ project. The problem is that the .py files are few in number but contain ML, which makes it tricky to translate them into .cpp and i have to keep the rest of the code in .cpp because it’s a high-frequency finance project and i like this language ^^. All this preamble to get to my question: how can i make an application with an interface using mostly .cpp and .py?
I don’t need something really complex, just something that lets me bring everything together with a clean interface.
and also, I don’t know if it’s possible, but i compile my programs with the visual studio c++ compiler on windows, so this will create silly errors between .cpp and .py files, won’t it?