嵌入 Python 并向解释器添加 C 函数

发布于 2024-09-01 02:40:03 字数 493 浏览 9 评论 0原文

我目前正在编写一个嵌入 python 解释器的应用程序。这个想法是让程序在程序中的某些事件上调用用户指定的脚本。我管理了这部分,但现在我希望脚本能够调用我的程序中的函数。

到目前为止,这是我的代码:

#include "python.h"


static PyObject* myTest(PyObject* self,PyObject *args)
{
    return Py_BuildValue("s","123456789");
}

static PyMethodDef myMethods[] = {{"myTest",myTest},{NULL,NULL}};

int main()
{

    Py_Initialize();
    Py_InitModule("PROGRAM",myMethods);

    PyRun_SimpleString("print PROGRAM.myTest()");


    Py_Finalize();
}

谢谢!

I'm currently writing an applications that embedds the python interpreter. The idea is to have the program call user specified scripts on certain events in the program. I managed this part but now I want the scripts to be able to call functions in my program.

Here's my code so far:

#include "python.h"


static PyObject* myTest(PyObject* self,PyObject *args)
{
    return Py_BuildValue("s","123456789");
}

static PyMethodDef myMethods[] = {{"myTest",myTest},{NULL,NULL}};

int main()
{

    Py_Initialize();
    Py_InitModule("PROGRAM",myMethods);

    PyRun_SimpleString("print PROGRAM.myTest()");


    Py_Finalize();
}

Thanks!

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

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

发布评论

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

评论(1

一桥轻雨一伞开 2024-09-08 02:40:03

您需要将该函数绑定到某个模块,请参阅 http://docs .python.org/extending/embedding.html#extending-embedded-python

编辑:
基本上你的代码应该可以工作。什么不起作用?

You need to bind that function to some module, see http://docs.python.org/extending/embedding.html#extending-embedded-python

Edit:
Basicly your code should work. Whats not working?

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