Pher0n
Pher0n

Reputation: 17

How to decompyle exe to py which compiled by Nuitka

I used: nuitka --standalone script.py After this command I got folder with exe file and another files, as in pyinstaller The problem is that when creating an exe through pyinstaller, you can get back the source code using uncompyle6. When creating an exe via nuitka --standalone, there is no base_library.rar, as in pyinstaller, where is the code in the pyc file. How do I get the source code? My english so bad, I used google translater

Realizing that the pyc file with the code is nowhere to be found, I decided that it was in the exe file (as pyinstaller --onefile), I tried pyinstxtractor.py however nothing happened

Upvotes: 0

Views: 3029

Answers (1)

Schuh
Schuh

Reputation: 1

Simple & Short answer; you can't.

Upvotes: 0

Related Questions