基本想法: 先看中文小介绍,再看英文详细文档。

1. 参考

首先参考THIS, IBM的工程师好像出了好多这样的文章啊,而且每次看到时间戳,我都想戳自己- -!

2. ERROR

可能遇到错误: fatal error: Python.c: No such file or directory

a. 参考THIS ;  b. 或许用  sudo apt-get install python2.7-dev,命令就能解决(江湖传闻,只用于ubuntu) ; c. python2.7-dev 是什么?THIS

3. 参考

参考《Python core programming》- Chapter 22, 扩展Python - 全部看一遍

注意到了 strdup() 函数。联想到和 strcpy() 函数 的区别。

关于 strdup() 的解说 参考 THIS

(这里,我一开始以为,下面的答案有 memory leak,但是注意返回值char*, 注意在《Python core programming》 中的用法,

说明,如果你使用 p= strdup(),就需要你自己再次 free(p) , 对我来说,这就是最重要的区别。)

4. ERROR

$ python setup.py install

running install
running build
running build_ext
running install_lib
copying build/lib.linux-i686-2.7/Extest.so -> /usr/local/lib/python2.7/dist-packages
error: /usr/local/lib/python2.7/dist-packages/Extest.so: Permission denied 

注意到,error发生。猜测是ubuntu 读写权限问题。

$ sudo python setup.py install
[sudo] password for usr:
running install
running build
running build_ext
running install_lib
copying build/lib.linux-i686-2.7/Extest.so -> /usr/local/lib/python2.7/dist-packages
running install_egg_info
Writing /usr/local/lib/python2.7/dist-packages/Extest-0.0.0.egg-info

问题解决。

5. 参考

a. 官方文档

b. 应该是,中文翻译。面对这个翻译,我真的真的,尼玛很佩服啊!太tmd有用了啊!

—— THIS,这个货,尼玛啊!是做果壳网的!!?

c. THIS,虽然不是文档,但是看着还不错。

说实话,看了一些资料之后,对于 “C扩展Python”这个问题,所有资料都指向官方文档。完全是躲不开的文档。除非你不玩了。那你还能不玩很多事情。

6. 未解决

static PyObject *
spam_system(PyObject *self, PyObject *args) { ...}

self ??

The self argument points to the module object for module-level functions; for a method it would point to the object instance.

7. 未解决

where is

An example may be found in the file Demo/embed/demo.c in the Python source distribution.

where is

A more substantial example module is included in the Python source distribution as Modules/xxmodule.c. This file may be used as a template or simply read as an example.

8. 未解决

1.2, 1.4, 1.5, 1.6, 1.8需要例子,

C中调用Python,要十分小心 reference 的使用,很容易导致内存问题。

为什么所有的 要供给python使用的 封装函数,都要是static?

9. <Python cookbook> - chapter 17

-(17.1) Topic: C语言定义了一个新的类型,这个类型Python可以操作。

a. 在开始17.1之前,先完成 THIS.

b. PyObject_HEAD -> Py_ssize_t -> PyTypeObject -> PyObject

-> staticforward(注意:Python2.2中,定义新类型发生了变化。 Python2.7中,没有staticforward)

-> statichere(THIS1(ctrl+F: statichere); THIS2; In a word, both staticforward & statichere are just static now.)

-> PyArg_ParseTuple ->

未解决 - ERROR:

running build
running build_ext
building 'elemlist' extension
creating build
creating build/temp.linux-i686-2.7
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c elemlist.c -o build/temp.linux-i686-2.7/elemlist.o
elemlist.c: In function ‘car’:
elemlist.c:58:31: error: ‘PyObject’ has no member named ‘car’
elemlist.c: In function ‘cdr’:
elemlist.c:67:31: error: ‘PyObject’ has no member named ‘cdr’
elemlist.c: In function ‘setcar’:
elemlist.c:78:5: error: ‘PyObject’ has no member named ‘car’
elemlist.c:78:5: error: ‘PyObject’ has no member named ‘car’
elemlist.c:78:5: error: ‘PyObject’ has no member named ‘car’
elemlist.c:79:5: error: ‘PyObject’ has no member named ‘car’
elemlist.c: In function ‘setcdr’:
elemlist.c:91:5: error: ‘PyObject’ has no member named ‘cdr’
elemlist.c:91:5: error: ‘PyObject’ has no member named ‘cdr’
elemlist.c:91:5: error: ‘PyObject’ has no member named ‘cdr’
elemlist.c:92:5: error: ‘PyObject’ has no member named ‘car’
elemlist.c: In function ‘initelemlist’:
elemlist.c:107:15: warning: unused variable ‘m’ [-Wunused-variable]
elemlist.c: In function ‘cdr’:
elemlist.c:68:1: warning: control reaches end of non-void function [-Wreturn-type]
elemlist.c: In function ‘car’:
elemlist.c:59:1: warning: control reaches end of non-void function [-Wreturn-type]
error: command 'gcc' failed with exit status 1

-(17.6) - 处理python数据到C中计算并返回。

void
inittotal922(void) {
(void) Py_InitModule("total922", total922Methods);
} # 函数名规则: initModuleName
# Py_InitModule(ModuleNmae, 方法数组) # setup.py
# ext_modules = [Extension('Modulename', sources = ['sequenceFast_test.c'])]
# 例: ext_modules = [Extension('total922', sources = ['sequenceFast_test.c'])]

C扩展Python的更多相关文章

  1. 使用c/c++扩展python

    用python脚本写应用比较方便,但有时候由于种种原因需要扩展python(比如给程序提供python接口等). 之前一直想整理下,今天终于坐下来把这件事情给做了,这里记录下,也方便我以后查阅. 说明 ...

  2. 用 C 扩展 python

    本文介绍如何用 C 语言来扩展 python.所举的例子是,为 python 添加一个设置字符串到 windows 的剪切板(Clipboard)的功能.我在写以下代码的时候用到的环境是:window ...

  3. 使用C++扩展Python的功能 转自:http://blog.csdn.net/magictong/article/details/8897568#comments

    使用C++扩展Python的功能 环境 VS2005Python2.5.4 Windows7(32位) 简介 长话短说,这里说的扩展Python功能与直接用其它语言写一个动态链接库,然后让Python ...

  4. C语言扩展Python模块

    1. 先创建一个PythonDemo.cpp文件: //c/c++中调用python脚本,配置步骤参见上一篇:C/C++与python交互 \  C/C++中调用python文件. #include ...

  5. 扩展Python模块系列(三)----参数解析与结果封装

    在上一节中,通过一个简单的例子介绍了C语言扩展Python内建模块的整体流程,从本节开始讲开始深入讨论一些细节问题,在细节讨论中从始至终都会涉及[引用计数]的问题.首先讨论C语言封装的Python函数 ...

  6. 扩展Python模块系列(二)----一个简单的例子

    本节使用一个简单的例子引出Python C/C++ API的详细使用方法.针对的是CPython的解释器. 目标:创建一个Python内建模块test,提供一个功能函数distance, 计算空间中两 ...

  7. 扩展Python模块系列(一)----开发环境配置

    本系列将介绍如何用C/C++扩展Python模块,使用C语言编写Python模块,添加到Python中作为一个built-in模块.Python与C之间的交互目前有几种方案: 1. 原生的Python ...

  8. 扩展Python模块系列(四)----引用计数问题的处理

    承接上文,发现在使用Python C/C++ API扩展Python模块时,总要在各种各样的地方考虑到引用计数问题,稍不留神可能会导致扩展的模块存在内存泄漏.引用计数问题是C语言扩展Python模块最 ...

  9. 扩展Python模块系列(五)----异常和错误处理

    在上一节中,讨论了在用C语言扩展Python模块时,应该如何处理无处不在的引用计数问题.重点关注的是在实现一个C Python的函数时,对于一个PyObject对象,何时调用Py_INCREF和Py_ ...

随机推荐

  1. C# memcache

    概述 memcache是一套开放源的分布式高速缓存系统.由服务端和客户端组成,以守护程序(监听)方式运行于一个或多个服务器中,随时会接收客户端的连接和操作.memcache主要把数据对象缓存到内存中, ...

  2. 2013 Asia Regional Changchun

    Hard Code http://acm.hdu.edu.cn/showproblem.php?pid=4813 #include<cstdio> ]; int main(){ int t ...

  3. PAT-乙级-1051. 复数乘法 (15)

    1051. 复数乘法 (15) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue 复数可以写成(A + Bi)的常规 ...

  4. struts.properties配置详解(转)

    Struts 2框架有两个核心配置文件,其中struts.xml文件主要负责管理应用中的Action映射,以及该Action包含的Result定义等.除此之 外,Struts 2框架还包含     s ...

  5. Java学习第三篇:类的三大特征,抽象类,接口,final关键字

    一.类的三大特征 1.封装性 (1).什么是封装 封装就是把抽象出的数据和对数据的操作封装在一起, 数据被保护在内部, 程序的其他部分只有通过被授权的操作(成员方法), 才能对数据进行操作. (2). ...

  6. CentOS安装视频播放器SMPlayer

    首先下载rpmforg,下载对应的版本,就是对应CentOS版本,还有32位与64位也要对应上.地址如下: http://wiki.centos.org/AdditionalResources/Rep ...

  7. Chp14: Java

    1.finally keyword: finally keyword is used in association with a try/catch block and guarantees that ...

  8. 空格的URL编码

    Q: 为什么我看的教材一会说是“+” 一会说是“%20” A: urlencode(" ") '返回+encodeURI(" ") '返回%20是有区别的

  9. 自己常用的wireshark过滤条件

    抓发给NVR的StrartRealPlay命令包: ip.src eq 118.123.114.8 and  tcp contains 02:63:64:61 抓发给NVR的心跳包: ip.src e ...

  10. Sina App Engine(SAE)入门教程(4)- SaeVCode(验证码服务)使用

    参考资料 SaeVCode api 文档 使用教程 所有的验证码原理都是生成一个vcode字符串,存到session中,和用户的输入进行比较判断,以下是一个使用验证码服务的完整实例: 首页index. ...