Search code examples
pythoncembedding

is it possible to call python methods from a C program?


I remember seeing somewhere that you could call python methods from inside C using

#include "python.h"

But I can't seem to find the source for this or any examples.

How can I call python methods from inside a C program?


Solution

  • Here's a doc item from the python site about extending C with python functionality

    Here's the start of the documentation (where it refers to python.h) where you can extend Python with C functionality.