-
Anatomy of a Python C Module
First posted by nmariz (4 years, 2 months ago) -
Writing Python modules in C is relatively easy. The main reason to do so is to increase performance over using Python code. I will demonstrate how to implement a Fibonacci Python function in C.
-

