cffi

C Foreign Function Interface for Python library

brewmacoslinux
Try with needOr install directly
Source

About

C Foreign Function Interface for Python

Commands

cffi

Examples

Build a CFFI module from a setup.py file$ python setup.py build_ext --inplace
Create a simple CFFI interface in Python code$ python -c "from cffi import FFI; ffi = FFI(); ffi.cdef('int add(int, int);'); print(ffi)"
Compile CFFI extension for a package$ python -m pip install --no-build-isolation .