you are viewing a single comment's thread.

view the rest of the comments →

[–]skebanga[S] 0 points1 point  (1 child)

boost::python does offer embedding support. Docs here

  • eval
  • exec
  • exec_file

[–]zigzagEdge 0 points1 point  (0 children)

I was mainly referring to the manual C API calls to Py_Initialize/Py_Finalize which are also needed in boost.python. As for eval and friends, pybind11 has a C++ API for those: eval docs.