Execute binary string of C module
问题 Someone created a C module for python with Nuitka. (The original Python code is not available, the module is already compiled - so it is a machine binary file.) I would like to use the code within another tool, which only excepts Python files. So I would like to include the C code into Python. To get more specific: So far I have the files thatmodule.pyi and a thatmodule.so . I can include them into my current Python code simply by running import thatmodule inside mymodule.py . Now I only want