vote up 1 vote down star

I am working on embedding python in to c++. In some peculiar case I require two separate instances of the interpreter in same thread.

Can I wrap Python interpreter in to a c++ class and get services from two or more class instances?

flag

4 Answers

vote up 4 vote down check

Callin Py_Initialize() twice won't work well, however Py_NewInterpreter can work, depending on what you're trying to do. Read the docs carefully, you have to hold the GIL when calling this.

link|flag
I guess I will not get a straightforward answer to my question. Your answer has given me some inputs on which I can start work. Py_NewInterpreter seems to be the correct option to start exploring the scenario I have described. Based on this I am accepting your answer. – Amol Gawai Oct 6 at 8:18
vote up 0 vote down
  • You can let the python interpreter live outside of your application memory space. Just embed the interpreter in a DLL.
  • You can set up & save python contexts to simulate two different interpreters.
link|flag
vote up 1 vote down

I don't think you are the first person to want to do this, unfortunately I believe it is not possible. Are you able to run the python interperters as separate processes and use RPC?

link|flag
vote up 2 vote down

You can, but I'd recommend you not to re-implement a Python interpreter when there is a standard implementation. Use boost::python to interface with Python.

link|flag
boost python uses python c apis. is it possible to start the interpreter twice by calling Py_Initialize()? – Amol Gawai Sep 26 at 7:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.