Isso não compila Python para código de máquina. Mas permite criar uma biblioteca compartilhada para chamar o código Python.
Se o que você está procurando é uma maneira fácil de executar o código Python a partir do C sem depender do material execp. Você pode gerar uma biblioteca compartilhada a partir do código python agrupado com algumas chamadas para a API de incorporação do Python . Bem, o aplicativo é uma biblioteca compartilhada, um arquivo .so que você pode usar em muitas outras bibliotecas / aplicativos.
Aqui está um exemplo simples que cria uma biblioteca compartilhada, que você pode vincular a um programa C. A biblioteca compartilhada executa o código Python.
O arquivo python que será executado é pythoncalledfromc.py
:
# -*- encoding:utf-8 -*-
# this file must be named "pythoncalledfrom.py"
def main(string): # args must a string
print "python is called from c"
print "string sent by «c» code is:"
print string
print "end of «c» code input"
return 0xc0c4 # return something
Você pode experimentá-lo python2 -c "import pythoncalledfromc; pythoncalledfromc.main('HELLO')
. Ele produzirá:
python is called from c
string sent by «c» code is:
HELLO
end of «c» code input
A biblioteca compartilhada será definida pelo seguinte callpython.h
:
#ifndef CALL_PYTHON
#define CALL_PYTHON
void callpython_init(void);
int callpython(char ** arguments);
void callpython_finalize(void);
#endif
O associado callpython.c
é:
// gcc `python2.7-config --ldflags` `python2.7-config --cflags` callpython.c -lpython2.7 -shared -fPIC -o callpython.so
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <python2.7/Python.h>
#include "callpython.h"
#define PYTHON_EXEC_STRING_LENGTH 52
#define PYTHON_EXEC_STRING "import pythoncalledfromc; pythoncalledfromc.main(\"%s\")"
void callpython_init(void) {
Py_Initialize();
}
int callpython(char ** arguments) {
int arguments_string_size = (int) strlen(*arguments);
char * python_script_to_execute = malloc(arguments_string_size + PYTHON_EXEC_STRING_LENGTH);
PyObject *__main__, *locals;
PyObject * result = NULL;
if (python_script_to_execute == NULL)
return -1;
__main__ = PyImport_AddModule("__main__");
if (__main__ == NULL)
return -1;
locals = PyModule_GetDict(__main__);
sprintf(python_script_to_execute, PYTHON_EXEC_STRING, *arguments);
result = PyRun_String(python_script_to_execute, Py_file_input, locals, locals);
if(result == NULL)
return -1;
return 0;
}
void callpython_finalize(void) {
Py_Finalize();
}
Você pode compilá-lo com o seguinte comando:
gcc `python2.7-config --ldflags` `python2.7-config --cflags` callpython.c -lpython2.7 -shared -fPIC -o callpython.so
Crie um arquivo nomeado callpythonfromc.c
que contenha o seguinte:
#include "callpython.h"
int main(void) {
char * example = "HELLO";
callpython_init();
callpython(&example);
callpython_finalize();
return 0;
}
Compile e execute:
gcc callpythonfromc.c callpython.so -o callpythonfromc
PYTHONPATH=`pwd` LD_LIBRARY_PATH=`pwd` ./callpythonfromc
Este é um exemplo muito básico. Pode funcionar, mas, dependendo da biblioteca, ainda pode ser difícil serializar estruturas de dados C para Python e de Python para C. As coisas podem ser um pouco automatizadas ...
Nuitka pode ser útil.
Também existe o numba, mas ambos não pretendem fazer exatamente o que você deseja. É possível gerar um cabeçalho C a partir do código Python, mas apenas se você especificar como converter os tipos Python em tipos C ou se puder inferir essas informações. Veja python astroid para um analisador Python ast.