我在做我的第一次创业到整合C和Python的2.7.3。 对于初学者来说,我只是想编写Python中的I2C模块,可以做到基本的加法。 (据npfind叫,因为一旦我想出解决办法,我想写一个numpy的查找方法)
npfind.h:
#include <math.h>
extern int add(int a, int b);
npfind.c:
#include "npfind.h"
int add(int a, int b)
{
return a + b;
}
pynpfind.c:
#include "Python.h"
#include "npfind.h"
static char* py_add_doc = "Adds two numbers.";
static PyObject* py_add(PyObject* self, PyObject* args)
{
int a, b, r;
if (!PyArg_ParseTuple(args, "ii", &a, &b))
{
return NULL;
}
r = a + b;
return Py_BuildValue("i", r);
}
static PyMethodDef* _npfindmethods = {
{"add", py_add, METH_VARARGS, py_add_doc},
{NULL, NULL, 0, NULL}
};
void init_npfind(void)
{
PyObject* mod;
mod = Py_InitModule("_npfind", _npfindmethods);
}
npfind.py:
from _npfind import *
#Do stuff with the methods
npfindsetup.py
from distutils.core import setup, Extension
setup(name="npfind", version="1.0", py_modules = ['npfind.py'],
ext_modules=[Extension("_npfind", ["pynpfind.c", "npfind.c"])])
毕竟是,在Windows 7中,I型
python npfindsetup.py build_ext --inplace --compiler=mingw32
这似乎工作。 当我再试图找到npfind.py,我得到这个错误:
Traceback (most recent call last):
File "npfind.py", line 1, in <module>
from _npfind import *
ValueError: module functions cannot set METH_CLASS or METH_STATIC
我无法弄清楚它是什么说什么。 什么是METH_CLASS和METH_STATIC,为什么我在我试图设置呢?