ConfigParser模塊 configparser模塊主要是用來生成和修改配置文件 比如要生成一個example1.ini的配置文件可以如下: 1 import configparser 2 3 config = configparser.ConfigParser() 4 config["DEF ...
ConfigParser模塊
configparser模塊主要是用來生成和修改配置文件
比如要生成一個example1.ini的配置文件可以如下:
1 import configparser 2 3 config = configparser.ConfigParser() 4 config["DEFAULT"]= {'ServerAliveInterval':'45', 5 'Compression':'yes', 6 'CoompressiinLevel':'9'} 7 config['bitbucket.org'] = {} 8 config['bitbucket.org']['User'] = 'hg' 9 10 config['topsevret.server.com'] = {} 11 topsectret = config['topsevret.server.com'] #這裡只不過是更換了一個變數來賦值 12 topsectret['Host Port'] = '4001' 13 topsectret['Forwardx11'] = "no" 14 config['DEFAULT']['ForwardX11'] = 'yes' 15 16 config["mypython.com"] = {'name':'peng', 17 'age':'25', 18 'job':'IT'} 19 config["mypython.com"]['job'] = 'AI' 20 21 with open("example1.ini",'w') as configfile: 22 config.write(configfile)View Code
但大部分時間配置文件都是用手動修改,然後我們的工程代碼裡面是讀出來的,例如:
1 import configparser 2 3 conf = configparser.ConfigParser() 4 conf.read("example1.ini") 5 6 print(conf.defaults()) 7 print(conf.sections()) 8 print(conf['mypython.com']['age'])View Code
那麼讀出來的結果如下:
Hashlib模塊
Hashlib模塊包括MD5和SHA, 包括了SHA1, SHA224, SHA256, SHA384, SHA512 ,MD5 演算法,一般來說SHA比MD5演算法更好,且SHA512比SHA1、SHA224等更優秀;
另外,MD5演算法是反解不了,有些可以得出明文,實際是撞庫等方式得到的。
1 #md5其實是不能反解的,有的能輸出明文是用撞庫等方式得到的 2 import hashlib 3 4 m = hashlib.md5() 5 m2 = hashlib.md5() 6 m.update(b"peng") #1b77697b886efcf3fe95a8839064c1cb 7 print(m.hexdigest()) 8 m.update(b"junfei") #其實這裡生成的MD5是pengjunfei的加在一起的計算結果 f2e1ce014a4fdab21b2fb78d782e3de5 9 print(m.hexdigest()) 10 11 m2.update(b"pengjunfei") #f2e1ce014a4fdab21b2fb78d782e3de5 12 print(m2.hexdigest())View Code
hmac模塊
消息加密中使用,但實際使用過程,得發送和接收的雙方知道key。這個加密模塊的加密方式比較快。
1 import hmac 2 3 h_test = hmac.new("PengDeTesila".encode(encoding="utf-8")) 4 print(h_test.digest()) 5 print(h_test.hexdigest())View Code