Brooks McMillin
Brooks McMillin

Reputation: 31

embed C in python

I need to find some way to embed a C library and C code in python. I have looked all over and found a lot of embedding python in C examples but not very many visa versa. And I need to make sure I'm embedding the C, and not just re-wrapping it.

Thanks.

Upvotes: 3

Views: 6129

Answers (1)

rob05c
rob05c

Reputation: 1233

Extending Python with C is straightforward, but not brief. There is an official tutorial titled Extending Python with C or C++ available here.

Upvotes: 7

Related Questions