encrypt myself code

1- download VCForPython27.msi

2- create the setup.py file

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

setup(
    name='encrypt',
    ext_modules=cythonize("use_config.py"), requires=['Cython']
)

3- create pyd file

python setup.py build_ext --inplace

猜你喜欢

转载自www.cnblogs.com/otfsenter/p/9388089.html