https://my.oschina.net/wizardpisces/blog/107445
https://www.cnblogs.com/kaituorensheng/p/4501128.html
http://help.sense.com.cn/?p=165
http://www.cnblogs.com/haq5201314/p/8437201.htmlhtml
將python文件.py編譯成pyc二進制文件:python
python -m py_file.py
或者經過腳本運行:優化
import py_compile ##單個文件編譯 import compileall ##多個文件編譯 py_compile.compile('path') ##path是包括.py文件名的路徑
將python文件編譯成pyo二進制文件:加密
python -O -m py_file.py
什麼是pyc文件?spa
pyc是一種二進制文件,是由py文件通過編譯後,生成的文件,是一種byte code,py文件變成pyc文件後,加載的速度有所提升,並且pyc是一種跨平臺的字節碼,是由python的虛擬機來執行的,這個是相似於JAVA或者.NET的虛擬機的概念。.net
注意事項:pyc的內容,是跟python的版本相關的,不一樣版本編譯後的pyc文件是不一樣的,2.5編譯的pyc文件,2.4版本的 python是沒法執行的。code
什麼是pyo文件?server
pyo是優化編譯後的程序 python -O 源文件便可將源程序編譯爲pyo文件 htm
什麼是pyd文件?blog
pyd是python的動態連接庫。
參考:https://blog.csdn.net/SoaringLee_fighting/article/details/78892876
hashlib模塊:
import hashlib sha1 = hashlib.sha1('文本內容') #加密 osv=sha1.hexdigest() print(osv) bx=bytes(osv,encoding='utf-8') #轉換類型 with open('1.txt','wb') as f: #以二進制寫類型打開 f.write(bx) #寫入文件 get_sha1('')
pycrypto模塊:
from Crypto.Cipher import AES obj = AES.new('This is a key123', AES.MODE_CBC, 'This is an IV456') message = "The answer is no" ciphertext = obj.encrypt(message) >>> ciphertext '\xd6\x83\x8dd!VT\x92\xaa`A\x05\xe0\x9b\x8b\xf1' >>> obj2 = AES.new('This is a key123', AES.MODE_CBC, 'This is an IV456') >>> obj2.decrypt(ciphertext) 'The answer is no'