Skip to content

Workflows

just-makeit generates the C, the Python bindings, the build system, and the tests — you write the algorithm. These pages walk the common paths end to end.

Pick your starting point

You're here if… Start with
You have one algorithm to wrap and want from my_dsp import Engine with full C and Python tests Standalone extension
You have several independent algorithms and want them in one package, each with its own .so Multi-extension package
You want related types grouped behind one import — from my_filters.filter import Fir, Biquad Grouped module types

Not sure whether an object should be standalone or live in a module? See standalone vs module.

Working with a project

Documentation & tests

Shipping