1994-10-08 16:30:50 -03:00
|
|
|
/* Example of embedding Python in another program */
|
|
|
|
|
1995-03-28 05:22:53 -04:00
|
|
|
#include "Python.h"
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2008-10-17 12:54:44 -03:00
|
|
|
PyObject* PyInit_xyzzy(void); /* Forward */
|
1997-12-25 00:51:41 -04:00
|
|
|
|
2000-07-22 16:25:51 -03:00
|
|
|
main(int argc, char **argv)
|
1994-10-08 16:30:50 -03:00
|
|
|
{
|
2008-10-17 12:54:44 -03:00
|
|
|
/* Ignore passed-in argc/argv. If desired, conversion
|
|
|
|
should use mbstowcs to convert them. */
|
|
|
|
wchar_t *args[] = {L"embed", L"hello", 0};
|
|
|
|
|
1999-03-09 13:07:24 -04:00
|
|
|
/* Pass argv[0] to the Python interpreter */
|
2008-10-17 12:54:44 -03:00
|
|
|
Py_SetProgramName(args[0]);
|
|
|
|
|
|
|
|
/* Add a static module */
|
|
|
|
PyImport_AppendInittab("xyzzy", PyInit_xyzzy);
|
1994-10-08 16:30:50 -03:00
|
|
|
|
|
|
|
/* Initialize the Python interpreter. Required. */
|
1995-03-28 05:22:53 -04:00
|
|
|
Py_Initialize();
|
1994-10-08 16:30:50 -03:00
|
|
|
|
|
|
|
/* Define sys.argv. It is up to the application if you
|
|
|
|
want this; you can also let it undefined (since the Python
|
|
|
|
code is generally not a main program it has no business
|
|
|
|
touching sys.argv...) */
|
2008-10-17 12:54:44 -03:00
|
|
|
PySys_SetArgv(2, args);
|
1994-10-08 16:30:50 -03:00
|
|
|
|
|
|
|
/* Do some application specific code */
|
|
|
|
printf("Hello, brave new world\n\n");
|
|
|
|
|
|
|
|
/* Execute some Python statements (in module __main__) */
|
1995-03-28 05:22:53 -04:00
|
|
|
PyRun_SimpleString("import sys\n");
|
2008-10-17 12:54:44 -03:00
|
|
|
PyRun_SimpleString("print(sys.builtin_module_names)\n");
|
|
|
|
PyRun_SimpleString("print(sys.modules.keys())\n");
|
|
|
|
PyRun_SimpleString("print(sys.executable)\n");
|
|
|
|
PyRun_SimpleString("print(sys.argv)\n");
|
1994-10-08 16:30:50 -03:00
|
|
|
|
|
|
|
/* Note that you can call any public function of the Python
|
|
|
|
interpreter here, e.g. call_object(). */
|
|
|
|
|
|
|
|
/* Some more application specific code */
|
|
|
|
printf("\nGoodbye, cruel world\n");
|
|
|
|
|
|
|
|
/* Exit, cleaning up the interpreter */
|
1995-03-28 05:22:53 -04:00
|
|
|
Py_Exit(0);
|
1994-10-08 16:30:50 -03:00
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
1997-12-25 00:51:41 -04:00
|
|
|
/* A static module */
|
|
|
|
|
2000-07-22 16:25:51 -03:00
|
|
|
/* 'self' is not used */
|
1997-12-25 00:51:41 -04:00
|
|
|
static PyObject *
|
2001-01-10 13:09:00 -04:00
|
|
|
xyzzy_foo(PyObject *self, PyObject* args)
|
1997-12-25 00:51:41 -04:00
|
|
|
{
|
2007-12-02 10:31:20 -04:00
|
|
|
return PyLong_FromLong(42L);
|
1997-12-25 00:51:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef xyzzy_methods[] = {
|
2001-11-17 02:30:20 -04:00
|
|
|
{"foo", xyzzy_foo, METH_NOARGS,
|
|
|
|
"Return the meaning of everything."},
|
1997-12-25 00:51:41 -04:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
2008-10-17 12:54:44 -03:00
|
|
|
static struct PyModuleDef xyzzymodule = {
|
|
|
|
{}, /* m_base */
|
|
|
|
"xyzzy", /* m_name */
|
|
|
|
0, /* m_doc */
|
|
|
|
0, /* m_size */
|
|
|
|
xyzzy_methods, /* m_methods */
|
|
|
|
0, /* m_reload */
|
|
|
|
0, /* m_traverse */
|
|
|
|
0, /* m_clear */
|
|
|
|
0, /* m_free */
|
|
|
|
};
|
|
|
|
|
|
|
|
PyObject*
|
|
|
|
PyInit_xyzzy(void)
|
1997-12-25 00:51:41 -04:00
|
|
|
{
|
2008-10-17 12:54:44 -03:00
|
|
|
return PyModule_Create(&xyzzymodule);
|
1997-12-25 00:51:41 -04:00
|
|
|
}
|