有关从C ++创建Python库的建议吗?

时间:2015-05-06 03:02:27

标签: python c++ opengl libraries

我最近使用OpenGL库在C ++中创建了一个3D和2D力布局图可视化器(它使用了一些物理学)。有人可以给我一些关于使这个作为Python库有用的介绍性指针(问题或考虑因素以及我可能遇到的潜在陷阱)吗?

2 个答案:

答案 0 :(得分:1)

如果我正确理解您的问题,您想知道如何编写C扩展以便在Python中使用。这是一个简单的例子:

hello.c

#include <Python.h>

static PyObject* helloworld(PyObject* self)
{
    return Py_BuildValue("s", "Hello, Python extensions!!");
}

static char helloworld_docs[] =
    "helloworld( ): Any message you want to put here!!\n";

static PyMethodDef helloworld_funcs[] = {
    {"helloworld", (PyCFunction)helloworld, 
     METH_NOARGS, helloworld_docs},
    {NULL}
};

void inithelloworld(void)
{
    Py_InitModule3("helloworld", helloworld_funcs,
                   "Extension module example!");
}

setup.py

#!/usr/bin/env python

from setuptools import setup, Extension

setup(
    name='helloworld',
    version='1.0',
    ext_modules=[
        Extension('helloworld', ['hello.c'])
    ]
)

<强>构建

$ python setup.py develop
running develop
running egg_info
creating helloworld.egg-info
writing helloworld.egg-info/PKG-INFO
writing top-level names to helloworld.egg-info/top_level.txt
writing dependency_links to helloworld.egg-info/dependency_links.txt
writing manifest file 'helloworld.egg-info/SOURCES.txt'
reading manifest file 'helloworld.egg-info/SOURCES.txt'
writing manifest file 'helloworld.egg-info/SOURCES.txt'
running build_ext
building 'helloworld' extension
creating build
creating build/temp.linux-x86_64-2.7
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c hello.c -o build/temp.linux-x86_64-2.7/hello.o
creating build/lib.linux-x86_64-2.7
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/hello.o -o build/lib.linux-x86_64-2.7/helloworld.so
copying build/lib.linux-x86_64-2.7/helloworld.so -> 
Creating /home/prologic/.virtualenvs/hellopyc/lib/python2.7/site-packages/helloworld.egg-link (link to .)
Adding helloworld 1.0 to easy-install.pth file

Installed /home/prologic/tmp/hello-py-c
Processing dependencies for helloworld==1.0
Finished processing dependencies for helloworld==1.0

<强>测试

$ python
Python 2.7.6 (default, Mar 22 2014, 22:59:56) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import helloworld
>>> helloworld.helloworld()
'Hello, Python extensions!!'
>>> 
祝你好运!

答案 1 :(得分:0)

虽然James Mills的答案很好,但我会考虑其他选项 - 使用Boost.Python库来编写python扩展。 Here是一个基本的例子。看起来Boost.Python没有维护(上次更新 - 2009),但它仍然是一个非常好的选择。现在我在一个项目中使用它,我必须说,经过一段艰难的开始,现在它真的非常有用而且很容易。对我来说最重要的是处理引用计数(这在Python / C API中很痛苦),允许修改c ++代码中的python对象,并允许您为自定义数据类型注册转换器。所以不要写:

MyClass test = convertPythonObjectToMyClass(pythonObject);
MyOtherClass test2 = convertPythonObjectMyOtherClass(pythonObject);

你可以register your converters而不是使用它:

MyClass test = boost::python::extract<MyClass>(pythonObject);
MyOtherClass test2 = boost::python::extract<MyOtherClass>(pythonObject);

当然您也可以考虑其他选项 - 有关其他解决方案的详情,请参阅this个问题。