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
[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