当前位置:天才代写 > tutorial > Python教程 > Cython安装与利用入门

Cython安装与利用入门

2017-11-02 08:00 星期四 所属: Python教程 浏览:515

一、Cython是什么?

它是一个用来快速生成Python扩展模块(extention module)的东西

它的语法是python语言语法和c语言语法的混血

他比swig更容易编写python的扩展模块

也许你会说swig可以直接通过c的头文件生成扩展模块,可是swig对回调函数的支持不是很好,

别的,假如用swig,许多环境下,你要写特另外代码将输入的参数转换成python工具以及将输出转成python工具,譬喻假如封装的一个C函数的参数是输入输出的话,又如假如C函数的参数中有回调函数的话

而在Cython,C里的范例,如int,float,long,char*等城市在须要的时候自动转成python工具,可能从python工具转成C范例,在转换失败时会抛出异常,这正是Cython最神奇的处所

别的,Cython对回调函数的支持也很好。

总之,假如你有写python扩展模块的需求,那么Cython真的是一个很好的东西

二、安转cython

cython 在linux下安装:

1. 源码包安装:

[blueelwang@pythontab ~]$ wget https://pypi.python.org/packages/b7/67/7e2a817f9e9c773ee3995c1e15204f5d01c8da71882016cac10342ef031b/Cython-0.25.2.tar.gz
[blueelwang@pythontab ~]$ tar xzvf Cython-0.25.2.tar.gz
[blueelwang@pythontab ~]$ cd Cython-0.25.2
[blueelwang@pythontab ~]$ python setup.py install

2. pip包安装

[blueelwang@pythontab ~]$ sudo pip install Cython --install-option="--no-cython-compile"

3. Ubuntu下安装

[blueelwang@pythontab ~]$ sudo apt-get install cython

安装后  输入 cython 即可验证是否安装乐成

三、利用

1、编写以 .pyx为扩展名的 cython措施,hello.pyx

def say_hello_to(name):
    print("Hello %s!" % name)

2、编写python措施 setup.py

其目标是把 hello.pyx措施转化成hello.c ,并编译成so文件

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
ext_modules = [Extension("hello", ["hello.pyx"])]
setup(
  name = 'Hello world app',
  cmdclass = {'build_ext': build_ext},
  ext_modules = ext_modules
)

3. 执行python措施

[blueelwang@pythontab ~]$ python setup.py build_ext --inplace

执行的功效会生成两个文件:hello.c 和 hello.so( 用PyObject* 封装好的文件)

4. 用python挪用 hello.so,挪用文件为test.py

import hello
hello.say_hello_to("hi,cython!!")

cython的主要目标是: 简化python挪用c语言措施的繁琐封装进程,提高python代码执行速度(C语言的执行速度比python快)

 

    关键字:

天才代写-代写联系方式