如何从 python 模块 (boost.python) 导入 class?

How to import class from python module (boost.python)?

我有一个python函数:

def log(text):
    print text

保存在 Callbacks.py 文件中。现在我想将它导入到 c++ 函数中并执行。这很好用:

py_fun = import("Callbacks");
py_fun.attr("log")(text);

但我想使 log 函数成为 class:

的一部分
class Logger:    
    def __init__(self):
        self.last_read = -1

    def log(self, text):
        print text

如何将其导入 C++ 并创建 Logger 的实例?

正是您所想的那样:

py::object mod = py::import("Callbacks");
py::object logger = mod.attr("Logger")();