Run Python Script from binary plugin written in C++
#1
I will call a python script from an binary plugin written in cpp.
As i now i can call a script using
CBuiltins* t=new CBuiltins();
t->Execute("XBMC.RunScript(test.py);")
or
CBuiltins::GetInstance().Execute("RunScript(test.py)");
But i am not able to compile it.

Is this the right option to call a python script from a binary plugin?
If so how can i compile the binary plugin with cbuiltins?

Thanks for any help
Reply


Messages In This Thread
Run Python Script from binary plugin written in C++ - by Mario.Pink - 2020-03-25, 20:21
Logout Mark Read Team Forum Stats Members Help
Run Python Script from binary plugin written in C++0