Skip to content

Instantly share code, notes, and snippets.

@bluebanboom
bluebanboom / embpython.c
Last active September 12, 2021 04:51
Example of embedding python in c.
#include <Python.h>
#include <stdio.h>
/*
* gcc embpython.c -I/usr/include/python2.7 -lpython
**/
void loadModule()
{
/* run objects with low-level calls */
char *arg1="sir", *arg2="robin", *cstr;
printf("Load Module err!\n");