C调用Python函数相关代码示例剖析


我们在使用C语言的时候,有时会遇到需要调用Python函数来完成一些特定的功能。那么接下来,我们将会在这里为大家详细介绍一下C调用Python函数的相关操作方法,希望可以给大家带来一些帮助。

Python脚本,存为pytest.py

  1. def add(a,b):  
  2. print "in python function add"  
  3. print "a = " + str(a)  
  4. print "b = " + str(b)  
  5. print "ret = " + str(a+b)  
  6. return a + b 

C调用Python函数的代码示例:

  1. #include < stdio.h> 
  2. #include < stdlib.h> 
  3. #include "C:/Python26/include/python.h"  
  4. #pragma comment(lib, "C:\\Python26\\libs\\python26.lib")  
  5. int main(int argc, char** argv)  
  6. {  
  7. // 初始化Python  
  8. //在使用Python系统前,必须使用Py_Initialize对其  
  9. //进行初始化。它会载入Python的内建模块并添加系统路  
  10. //径到模块搜索路径中。这个函数没有返回值,检查系统  
  11. //是否初始化成功需要使用Py_IsInitialized。  
  12. PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pRetVal;  
  13. Py_Initialize();  
  14. // 检查初始化是否成功  
  15. if ( !Py_IsInitialized() )   
  16. {  
  17. return -1;  
  18. }  
  19. // 载入名为pytest的脚本(注意:不是pytest.py)  
  20. pName = PyString_FromString("pytest");  
  21. pModule = PyImport_Import(pName);  
  22. if ( !pModule )  
  23. {  
  24. printf("can't find pytest.py");  
  25. getchar();  
  26. return -1;  
  27. }  
  28. pDict = PyModule_GetDict(pModule);  
  29. if ( !pDict )   
  30. {  
  31. return -1;  
  32. }  
  33. // 找出函数名为add的函数  
  34. pFunc = PyDict_GetItemString(pDict, "add");  
  35. if ( !pFunc || !PyCallable_Check(pFunc) )  
  36. {  
  37. printf("can't find function [add]");  
  38. getchar();  
  39. return -1;  
  40. }  
  41. // 参数进栈  
  42. pArgs = PyTuple_New(2);  
  43. // PyObject* Py_BuildValue(char *format, ...)  
  44. // 把C++的变量转换成一个Python对象。当需要从  
  45. // C++传递变量到Python时,就会使用这个函数。此函数  
  46. // 有点类似C的printf,但格式不同。常用的格式有  
  47. // s 表示字符串,  
  48. // i 表示整型变量,  
  49. // f 表示浮点数,  
  50. // O 表示一个Python对象。  
  51. PyTuple_SetItem(pArgs, 0, Py_BuildValue("l",3));   
  52. PyTuple_SetItem(pArgs, 1, Py_BuildValue("l",4));  
  53. // 调用Python函数  
  54. pRetVal = PyObject_CallObject(pFunc, pArgs);  
  55. printf("function return value : %ld\r\n", PyInt_AsLong(pRetVal));  
  56. Py_DECREF(pName);  
  57. Py_DECREF(pArgs);  
  58. Py_DECREF(pModule);  
  59. Py_DECREF(pRetVal);  
  60. // 关闭Python  
  61. Py_Finalize();  
  62. return 0;  
  63. }  
  64. //一下为个人实践的另一套方法  
  65. #include < Python.h> 
  66. #include < conio.h> 
  67. int main()  
  68. {  
  69. Py_Initialize();  
  70. if (!Py_IsInitialized())  
  71. {  
  72. printf("初始化错误\n");  
  73. return -1;  
  74. }  
  75. PyObject* pModule = NULL;  
  76. PyObject* pFunc = NULL;  
  77. PyObject* pArg = NULL;  
  78. PyObject* pRetVal = NULL;  
  79. pModule = PyImport_ImportModule("hello");  
  80. pFunc = PyObject_GetAttrString(pModule,"hello");  
  81. pArg = Py_BuildValue("(i,i)",33,44);  
  82. pRetVal = PyObject_CallObject(pFunc,pArg);  
  83. printf("%d\n",PyInt_AsLong(pRetVal));  
  84. Py_Finalize();  
  85. _getch();  
  86. return 0;  

以上就是我们对C调用Python函数的相关操作方法的介绍。

相关内容

    暂无相关文章

评论关闭