views:

127

answers:

2

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?

+5  A: 

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.

Ólafur Waage
+2  A: 

Check out http://docs.python.org/c-api

dseifert