show/hide this revision's text 2 added 598 characters in body

If you want to work between C++ and Python, than Boost Python 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:

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. 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);
show/hide this revision's text 1

If you want to work between C++ and Python, than Boost Python 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:

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