0sir1ss / Anubis

[UNMAINTAINED] A Python script to obfuscate and protect your code through anti debuggers, junk code and custom encryption.
MIT License
308 stars 38 forks source link

PyInstaller instead of Nuitka? #25

Closed xen-light closed 1 year ago

xen-light commented 1 year ago

As the title states, why?

I tested Nuitka and PyInstaller and Nuitka was far worse in terms of speed than PyInstaller.

YumYummity commented 1 year ago

Speed in compiling, or speed when running? Nuitka's output is arguably smaller, and compiles it into C.

While it is slower compiling, the output is harder to decompile and read, and is faster.

xen-light commented 1 year ago

I see.. thanks for the explanation!

YumYummity commented 1 year ago

np