python转cython_python – 使用现有C对象初始化Cython对象
C模型假设我有以下C数据结构,我希望向Python公开.#include #include struct mystruct{int a, b, c, d, e, f, g, h, i, j, k, l, m;};typedef std::vector mystruct_list;提升Python我可以使用boost :: python使用以下代码相当有效地包装它们,轻松地允许我使用现有的mystr...