Python source files are compiled into bytecodes in form of .pyc files which are then used by the python virtual machine. These files are generated automatically and on the fly on every machine where the code runs so it's pretty much useless to share them.
Python source files are compiled into bytecodes in form of
.pyc
files which are then used by the python virtual machine. These files are generated automatically and on the fly on every machine where the code runs so it's pretty much useless to share them.