¡@

Home 

python Programming Glossary: f.so

Simple wrapping of C code with cython

http://stackoverflow.com/questions/3046305/simple-wrapping-of-c-code-with-cython

python f setup.py build_ext inplace turns f.pyx and fc.cpp f.so a dynamic library python test f.py import f loads f.so f.fpy.. f.so a dynamic library python test f.py import f loads f.so f.fpy ... calls the C fc ... . python f setup.py uses distutils.. cython f.pyx f.cpp compile f.cpp and fc.cpp link f.o fc.o f.so a dynamic lib that python import f will load. For students I'd..