How to call a method inside a python script obfuscated

118 Views Asked by At

Any idea how I can call a method from a REST API using Python 3.11, this method is an entry point function to a python script. The python script is obfuscated with PyArmor 8. Is it possible to call a specific method inside an obfuscated class? Are there any other Obfuscation tools apart from PyArmor which can help?

Thanks in advance

1

There are 1 best solutions below

1
Luigi Rovani On

Yes, you could call your methods and classes normally, as if as not obfuscated, in runtime.

However, only in runtime, because pyarmor descaphy scripts in running. Im other worlds, you cannot get this methods by IDE/TXT. But theys will access for another modules runtime.

Except if you used "private" as parameter no pyarmor when ofuscate your script.