Extending Python

C functions can be called from Python by extending Python

This involves defining a new module, that can be imported

The module has a table of function names and corresponding C functions to call for each

A function must parse Python objects that are the function arguments, and return a Python object


next