I do like to protect some of my code to be not accessible , or at least not easy copy paste. I try to obfuscate using pyarmor and Cython, but got more problems to deploy than results.
I do like to protect some of my code to be not accessible , or at least not easy copy paste. I try to obfuscate using pyarmor and Cython, but got more problems to deploy than results.
That's not really something that we can give advice on.
You can hide most of my_module.py by moving its code into my_module_impl.py. Compile the latter so that you only need to deploy my_module.py and my_module_impl.pyc.