naksyn / PythonMemoryModule

pure-python implementation of MemoryModule technique to load dll and unmanaged exe entirely from memory
Apache License 2.0
297 stars 46 forks source link

doesn't work #6

Closed DataReset closed 11 months ago

DataReset commented 11 months ago

so, i tried it with nuitka executable, everything seems to be fine, no errors, but executable isn't runned, though debug prints that entry point is called

naksyn commented 11 months ago

Thanks for letting me know. However I won't add support for nuitka executables because I think there are better ways to execute python code in memory instead of using pythonmemorymodule with a nuitka executable. Feel free to submit a PR if you can add support for it though.

Cheers

DataReset commented 11 months ago

can u tell me these methods then? i just need an ability to compile python to exe and then run dynamically from memory.

naksyn commented 11 months ago

https://www.xorrior.com/In-Memory-Python-Imports/