python加密打包

python加密打包(保护python源代码)

1.编译为.so

在主py文件a.py创建python文件build_pyd.py如下:

from distutils.core import setup
from Cython.Build import cythonize

setup(
    name = "a_module",
    ext_modules = cythonize(["a_helper.py", "config.py"])
)

其中a_helper.py为掏空主文件a.py的辅助文件,理由下面会提到

执行

python3 build_pyd.py build_ext --inplace

将生成a_helper.cpython-38-x86_64-linux-gnu.so文件,(注意!!!由于pyinstaller加密打包只会加密.so依赖,因此上述掏空操作可达到保护a.py源代码的目的,另外还需注意在a.py中import a_helper.py所用包)

2.加密打包

a_helper.cpython-38-x86_64-linux-gnu.so移至a.py同级目录,执行

pyinstaller --key '密钥' a.py

再在生成的a.spec中加入

pathex=['a.py绝对路径']

执行

pyinstaller a.spec

即可。

你可能感兴趣的:(学习,ubuntu,编程语言,python,安全)