#include #include std::string greet() { return "hello, world"; } #include using namespace boost::python; BOOST_PYTHON_MODULE(hello) { def("greet", greet); }