當前位置:首頁 » 編程語言 » c調用python的函數

c調用python的函數

發布時間: 2024-12-04 04:04:52

㈠ 【python-C相互調用】python里的dict如何作為參數傳入.so中的c語言函數

#include<stdio.h>
#include<stdlib.h>
#include<Python.h>

staticPyObject*
wmf_reverse(PyObject*self,PyObject*args,PyObject*kwargs){
staticchar*kwlist[]={"name",NULL};
char*name=NULL;
PyObject*retval=NULL;

//問題1:只取一個字元串,format應該是"s"
//>>>if(PyArg_ParseTupleAndKeywords(args,keyds,"isi",kwlist,&name))
if(PyArg_ParseTupleAndKeywords(args,kwargs,"s",kwlist,&name)){
retval=(PyObject*)Py_BuildValue("i",1);
printf("%s ",name);
//問題2:不要釋放
//>>>free(name);
}else{
retval=(PyObject*)Py_BuildValue("i",0);
}
returnretval;
}

staticPyMethodDef
wmf_methods[]={
{"reverse",(PyCFunction)wmf_reverse,METH_VARARGS|METH_KEYWORDS,"reverse"},
//問題3:方法定義表,應該用一條空記錄來表示結束。
{NULL,NULL,0,NULL},
};

//問題4:沒有定義mole
staticstructPyMoleDef
wmf_mole={
PyMoleDef_HEAD_INIT,
"wmf",/*nameofmole*/
NULL,/*moledocumentation,maybeNULL*/
-1,/*sizeofper-interpreterstateofthemole,
or-.*/
wmf_methods,
};

//問題5:入口函數要聲明為:PyMODINIT_FUNC
PyMODINIT_FUNC
PyInit_wmf(void){
//問題6:Py_InitMole要初始化的是模塊,不是方法。所以傳方法定義是錯誤的。
//另外,python2.x是用Py_Init_mole,python3.x改用PyMole_Create了。
//兩者略有差別,自己注意一下吧。這里我用的是python3.x。
//Py_InitMole("wmf",ExtestMethods);
PyObject*m;
m=PyMole_Create(&wmf_mole);
if(m==NULL){
returnNULL;
}
returnm;
}

熱點內容
標准魚缸都什麼配置 發布:2024-12-04 17:34:54 瀏覽:294
電腦外存儲器 發布:2024-12-04 17:33:25 瀏覽:302
驗證碼破解java 發布:2024-12-04 17:33:23 瀏覽:907
財富分析師如何配置 發布:2024-12-04 17:33:23 瀏覽:255
做機械制圖需要什麼配置電腦 發布:2024-12-04 17:22:40 瀏覽:291
dsl編譯器 發布:2024-12-04 17:20:52 瀏覽:823
c語言編譯系統的功能 發布:2024-12-04 17:20:18 瀏覽:571
rman資料庫恢復資料庫 發布:2024-12-04 17:16:00 瀏覽:21
fpsmeter安卓60怎麼用 發布:2024-12-04 17:13:39 瀏覽:679
愛編程的人 發布:2024-12-04 17:13:37 瀏覽:303