+ 1
Can Python never hide its code at all?
3 ответов
+ 7
"Python, being a byte-code-compiled interpreted language, is very difficult to lock down..."*
https://stackoverflow.com/questions/261638/how-do-i-protect-python-code
* first, popularly accepted answer
Here on SoloLearn, people have used encoding:
e.g.: https://code.sololearn.com/cXksPla39N27/?ref=app
...and I've injected code at runtime, but at some point the interpreter has to get your source and there are debuggers for that.
Python's more for rapid development, ease of implementation and even getting ahead of the competition (because your concept is ready + funded first). Trying to hide Python in any serious way doesn't seem to mesh with the language very well.
+ 1
to understand more about data hiding, please check out this tutorial ( https://www.youtube.com/watch?v=SS-9y0H3Si8 )
i hope it will help you...
+ 1
thank you