2014-01-09 57 views
2

我一直在試圖運行到C代碼使用一個Python腳本3的documentation提供。Python嵌入使用C

的main.c:

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

/* 
* 
*/ 
int main(int argc, char** argv) { 
    PyObject *pName, *pModule, *pDict, *pFunc; 
    PyObject *pArgs, *pValue; 
    int i; 

    if (argc < 3) { 
     fprintf(stderr,"Usage: call pythonfile funcname [args]\n"); 
     return 1; 
    } 

    Py_Initialize(); 
    pName = PyUnicode_FromString(argv[1]); 
    /* Error checking of pName left out */ 

    pModule = PyImport_Import(pName); 
    Py_DECREF(pName); 

    if (pModule != NULL) { 
     pFunc = PyObject_GetAttrString(pModule, argv[2]); 
     /* pFunc is a new reference */ 
     if (pFunc && PyCallable_Check(pFunc)) { 
      pArgs = PyTuple_New(argc - 3); 
      for (i = 0; i < argc - 3; ++i) { 
       pValue = PyLong_FromLong(atoi(argv[i + 3])); 
       if (!pValue) { 
        Py_DECREF(pArgs); 
        Py_DECREF(pModule); 
        fprintf(stderr, "Cannot convert argument\n"); 
        return 1; 
       } 
       /* pValue reference stolen here: */ 
       PyTuple_SetItem(pArgs, i, pValue); 
      } 
      pValue = PyObject_CallObject(pFunc, pArgs); 
      Py_DECREF(pArgs); 
      if (pValue != NULL) { 
       printf("Result of call: %ld\n", PyLong_AsLong(pValue)); 
       Py_DECREF(pValue); 
      } 
      else { 
       Py_DECREF(pFunc); 
       Py_DECREF(pModule); 
       PyErr_Print(); 
       fprintf(stderr,"Call failed\n"); 
       return 1; 
      } 
     } 
     else { 
      if (PyErr_Occurred()) 
       PyErr_Print(); 
      fprintf(stderr, "Cannot find function \"%s\"\n", argv[2]); 
     } 
     Py_XDECREF(pFunc); 
     Py_DECREF(pModule); 
    } 
    else { 
     PyErr_Print(); 
     fprintf(stderr, "Failed to load \"%s\"\n", argv[1]); 
     return 1; 
    } 
    Py_Finalize(); 
    return 0; 
} 

test.py:

def multiply(a,b): 
    print("Will compute", a, "times", b) 
    c = 0 
    for i in range(0, a): 
     c = c + b 
    return c 

我進入控制檯:

./pytest test multiply 3 4 

,我也得到:

AttributeError: 'module' object has no attribute 'multiply' 
Cannot find function "multiply" 

我使用的是Ubuntu 13.10;我認爲這是相關的,因爲文檔似乎是針對Windows。我錯過了什麼?

回答

2

你忘了(或者更確切地說,是從來沒有告訴過),其the current/script/executable directory is not added to sys.path when embedding the interpreter,那麼你已經找到了一些所謂的「測試」完全不同的模塊和要導入來代替。

+0

非常感謝我將來會記住這一點。由於我仍然注意到,我已將文件重命名爲「qwe.py」,現在我得到ImportError:沒有名爲'qwe'的模塊 未能加載「qwe」 – user1610810

+0

沒關係我現在正朝着正確的方向前進。再次感謝。 – user1610810

+0

@ user1610810:問題不在於它找到了一些其他模塊,而不是你的,這是它無法找到你的第一個地方。 –