使用 C API 创建在 python 中声明的 python 类的实例

发布于 2024-07-26 21:52:40 字数 368 浏览 3 评论 0原文

我想使用 C API 创建在 __main__ 范围内定义的 Python 类的实例。

例如,该类名为 MyClass 并定义如下:

class MyClass:
    def __init__(self):
        pass

类类型位于 __main__ 范围内。

在 C 应用程序中,我想创建此类的一个实例。 这可以通过 PyInstance_New 轻松实现,因为它需要类名。 然而这个函数在Python3中不可用。

任何有关替代方案的帮助或建议都将受到赞赏。

谢谢,保罗

I want to create an instance of a Python class defined in the __main__ scope with the C API.

For example, the class is called MyClass and is defined as follows:

class MyClass:
    def __init__(self):
        pass

The class type lives under __main__ scope.

Within the C application, I want to create an instance of this class. This could have been simply possible with PyInstance_New as it takes class name. However this function is not available in Python3.

Any help or suggestions for alternatives are appreciated.

Thanks, Paul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾其所爱 2024-08-02 21:52:40

我相信最简单的方法是:

/* get sys.modules dict */
PyObject* sys_mod_dict = PyImport_GetModuleDict();
/* get the __main__ module object */
PyObject* main_mod = PyMapping_GetItemString(sys_mod_dict, "__main__");
/* call the class inside the __main__ module */
PyObject* instance = PyObject_CallMethod(main_mod, "MyClass", "");

当然还要加上错误检查。 完成后,您只需要 DECREF instance ,其他两个是借用的引用。

I believe the simplest approach is:

/* get sys.modules dict */
PyObject* sys_mod_dict = PyImport_GetModuleDict();
/* get the __main__ module object */
PyObject* main_mod = PyMapping_GetItemString(sys_mod_dict, "__main__");
/* call the class inside the __main__ module */
PyObject* instance = PyObject_CallMethod(main_mod, "MyClass", "");

plus of course error checking. You need only DECREF instance when you're done with it, the other two are borrowed references.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文