Question

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?

Was it helpful?

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.

OTHER TIPS

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top