c函数
1 |
|
1 |
|
setup.py
1 | from setuptools import setup, Extension |
或者是用gcc
1 | g++ -fPIC -shared great_class_wrap.cxx -o _great_class.so -I/usr/include/python2.7/ -lpython2.7 |
原始的c函数文件
1 |
|
1 | gcc -fPIC -shared great_module.c -o great_module.so -I/home/xxx/miniconda2/envs/env3.6/include/python3.6m -lpython3.6m |
多个参数
1 | #include <Python.h> |