.pyc files are the compiled bytecode for its corresponding .py file. It's scrambled, you would need a decompiler to inspect the source code and it would be very hard to read (compared to the original source).
People typically ship .pyc files when they want to hide what they are doing, for a wide variety of reasons.
People typically ship .pyc files when they want to hide what they are doing, for a wide variety of reasons.