C语⾔程序转换为Python语⾔
python语⾔是⽀持⽤c来它写模块的,其实现有的很多模块也是⽤c写的。这⾥我做个简单的介绍。
先决条件:
1.在linux上编写,需要⾃⼰编译出python的动态连接库。也就是要有libpython
2.5.so这样的东西。
2.在windows上,则需要mingw这个编译环境。其实只要你安装了Dev-Cpp就有了。当然还安装了windows版的python.
⼀、先把源代码帖上来,很简单,假设保存为 hello.c
#include <Python.h>
static PyObject *
hello_echo(PyObject *self, PyObject *args, PyObject *keywds)
{python代码转换
char *something;
if (!PyArg_ParseTuple(args, "s", &something))
return NULL;
printf("%s\n", something);
Py_INCREF(Py_None);
return Py_None;
}
static PyMethodDef hello_methods[] = {
{"echo", (PyCFunction)hello_echo, METH_VARARGS | METH_KEYWORDS, "print string"},
{NULL, NULL, 0, NULL}
};
void
inithello(void)
{
Py_InitModule("hello", hello_methods);
}
⼆、先说说在linux怎么编译它:
很简单,只需要⼀个命令,
gcc -shared -fPIC hello.c -I/usr/include/python2.5/ -L/usr/lib -lpython2.5 -o hello.so
就可以⽣成 hello.so 。注意这⾥-I/usr/include/python2.5/ 是python的头⽂件路径,有可能你的在-I/usr/local/include/python2.5/,
-L/usr/lib 是python的libpython2.5.so在哪⾥,有可能你的在-L/usr/local/lib,这个都根据实际情况。
来测试测试,在hello.so的当前路径下:
[zhaowei@papaya python]$ python
Python 2.5 (r25:51908, Jan 152007, 09:14:22)
[GCC 3.2.220030222 (Red Hat Linux 3.2.2-5)] on linux2
Type "help", "copyright", "credits" or "license"for more information.
>>> import hello
>>> ho("hehe, hello")
hehe, hello
>>>
三、再来说说在windows下怎么编译。你必须安装有mingw,简单来说安装有Dev-Cpp,然后把它安装⽬录下的bin⽬录加到环境变量的PATH⾥。
⽐如我的就是把D:\Dev-Cpp\bin加到PATH⾥。
开始了,打开命令⾏窗⼝,到hello.c所在⽬录,也运⾏⼀个命令,
gcc -shared hello.c -IC:\Python25\include -LC:\Python25\libs -lpython25 -o hello.pyd
就会在当前⽬录下⽣成⼀个hello.pyd的⽂件。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论