摘要: 加密模块hashlib import hashlib m=hashlib.md5() m.update(b'hello') print(m.hexdigest()) #十六进制加密 m.update(b'world') print(m.hexdigest()) #这个的加密是(b('hellowor 阅读全文
posted @ 2016-10-25 23:32 梅子472 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #-*- coding:utf8 -*- # Auth:fulimei import configparser #第一个标签 conf=configparser.ConfigParser() conf['DEFAULT']={'ServerAliveInterval': '45', 'Compres 阅读全文
posted @ 2016-10-25 22:54 梅子472 阅读(162) 评论(0) 推荐(0) 编辑