If you want to work between C++ and Python, than [Boost Python][1] is what you're looking for. You can write C Python bindings by hand for Cython, but that limits in many ways how you're going to write your code. This is the easiest way, as seen in some snippets from [this tutorial][2]:
A simple function that performs a hello world:
char const* greet()
{
return "hello, world";
}
The Boost python code needed to expose it to python:
#include <boost/python.hpp>
BOOST_PYTHON_MODULE(hello_ext)
{
using namespace boost::python;
def("greet", greet);
}
How to use this code from python:
>>> import hello_ext
>>> print hello.greet()
hello, world
Going in the opposite direction is bit tougher, since python doesn't compile to native code. You have to embed the python interpreter into your C++ application, but the work necessary to do that is documented [here][3]. This is an example of calling the python interpreter and extracting the result (the python interpreter defines the object class for use in C++):
object result = eval("5 ** 2");
int five_squared = extract<int>(result);
[1]: http://www.boost.org/doc/libs/1_36_0/libs/python/doc/index.html
[2]: http://www.boost.org/doc/libs/1_36_0/libs/python/doc/tutorial/doc/html/index.html
[3]: http://www.boost.org/doc/libs/1_36_0/libs/python/doc/tutorial/doc/html/python/embedding.html