pythonソースコードをコンパイルし、pythonスクリプトを暗号化

2995 ワード

pythonソースコードをコンパイルし、pythonスクリプトを暗号化
pythonソースコードのコンパイル
1.生成.pycファイル
import py_compile
py_compile.compile('hello.py')
2.ソースファイルの最適化
python -O -m py_compile 1.py
生成pyoファイル
 
例:
 1 [root@lvs-master tool]# python3
 2 Python 3.5.6 (default, May  3 2019, 01:52:28) 
 3 [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux
 4 Type "help", "copyright", "credits" or "license" for more information.
 5 >>> import py_compile
 6 >>> py_compile.compile('test_conn_linux.py')
 7 '__pycache__/test_conn_linux.cpython-35.pyc'
 8 >>> 
 9 >>> exit
10 Use exit() or Ctrl-D (i.e. EOF) to exit
11 
12 #    
13 [root@lvs-master __pycache__]# python3 test_conn_linux.cpython-35.pyc
14     :0           :172.16.132.4
15     :1           :192.168.1.111
16     :2           :47.106.169.222
17     :3           :172.16.132.3
18      (Q|q  )

 
posted @
2019-05-04 15:55輝bird読書(
...) コメント(
...) コレクションの編集