Sory for any mistakes, english isn't my native language ;)
Since you likely want to establish some kind of Python level API that wraps
your C++ code (so that Python code can talk to it), you might want to take
a look at Cython:
Stefan
If you want to keep your C++ and Python as separate but interacting
modules you might want to check out the SIMPL project's (http://
www.icanprogram.com/SIMPL) Python hooks. There is some tutorial
level code here:
http://www.icanprogram.com/06py/main.html
bob