You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can i call a python function inside C++? I found a closed issue (#30) where this question was asked by @skebanga but it seems that his question was not fully answered.
For example: I have a python function myfun
def myfun(i, j):
out = i + j
return out
Now i would like to call this function inside visual studio 2015. How can i do this? :P
I read the docs and tried to figure out how the test_callbacks.cpp/test_callbacks.py works but i really dont get it. Is there somewhere else a simple example how to do this?