上传者: 38689551
|
上传时间: 2021-11-30 14:15:47
|
文件大小: 36KB
|
文件类型: -
pyc的破解相对容易,使用cython将python文件编译成.so文件,能在一定程度上增强python源码的私密性。
编译成.so文件
环境准备:cython
测试脚本准备:test.py
#-*-coding: UTF-8 -* -
class test:
def say(self):
print 'hello'
脚本编译准备:
3.1 编写compile.py文件,内容如下:
#-*-coding: UTF-8 -* -
from distutils.core import setup
from Cython.Build import cythonize
setup(