Can I show the source code of a Python file with extension pyd? Or is there a way to protect your code to make anyone unable to show your code?
You can uncompile the pyc code in Python using this tool uncompyle6
and show the source code of the pyc file.
But what about pyd files? Can I do the same thing?