Building a ctypes-“based” C library with distutils
The distutils documentation here states that: A C extension for CPython is a shared library (e.g. a .so file on Linux, .pyd on Windows), which exports an initialization function. So the only difference regarding a plain shared library seems to be the initialization function (besides a sensible file naming convention I don’t think you have … Read more