hashlib
提供摘要算法的模块
import hashlib # 提供摘要算法的模块 sha = hashlib.md5() sha.update(b‘alex3714‘) print(sha.hexdigest()) # aee949757a2e698417463d47acac93df
hashlib
不管算法多么不同,摘要的功能始终不变对于相同的字符串使用同一个算法进行摘要,得到的值总是不变的使用不同算法对相同的字符串进行摘要,得到的值应该不同不管使用什么算法,hashlib的方式永远不变
sha 算法 随着 算法复杂程度的增加 我摘要的时间成本空间成本都会增加 摘要算法密码的密文存储文件的一致性验证 在下载的时候 检查我们下载的文件和远程服务器上的文件是否一致 两台机器上的两个文件 你想检查这两个文件是否相等 加盐
import hashlib md5 = hashlib.md5(bytes(‘盐‘,encoding=‘utf-8‘)) # md5 = hashlib.md5() md5.update(b‘123456‘) print(md5.hexdigest())
加盐
动态加盐用户名 密码使用用户名的一部分或者 直接使用整个用户名作为盐
动态加盐
import hashlib md5 = hashlib.md5(bytes(‘盐‘,encoding=‘utf-8‘)+b‘dw‘) # 加上需要加的字符 md5.update(b‘123456‘) print(md5.hexdigest())
动态加盐
import hashilib 做摘要计算的 把字节类型的内容进行摘要理
md5 sha
md5 正常的md5算法 加盐的 动态加盐
文件的一致性校验这里不需要加盐
configparse
创建文件
[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
[bitbucket.org]
User = hg
[topsecret.server.com]
Port = 50022
ForwardX11 = no
import configparser config = configparser.ConfigParser() config["DEFAULT"] = {‘ServerAliveInterval‘: ‘45‘, ‘Compression‘: ‘yes‘, ‘CompressionLevel‘: ‘9‘, ‘ForwardX11‘:‘yes‘ } config[‘bitbucket.org‘] = {‘User‘:‘hg‘} config[‘topsecret.server.com‘] = {‘Host Port‘:‘50022‘,‘ForwardX11‘:‘no‘} with open(‘example.ini‘, ‘w‘) as configfile: config.write(configfile)
configparser
查找文件
import configparser config = configparser.ConfigParser() #---------------------------查找文件内容,基于字典的形式 print(config.sections()) # [] config.read(‘example.ini‘) print(config.sections()) # [‘bitbucket.org‘, ‘topsecret.server.com‘] print(‘bytebong.com‘ in config) # False print(‘bitbucket.org‘ in config) # True print(config[‘bitbucket.org‘]["user"]) # hg print(config[‘DEFAULT‘][‘Compression‘]) #yes print(config[‘topsecret.server.com‘][‘ForwardX11‘]) #no print(config[‘bitbucket.org‘]) #<Section: bitbucket.org> for key in config[‘bitbucket.org‘]: # 注意,有default会默认default的键 print(key) print(config.options(‘bitbucket.org‘)) # 同for循环,找到‘bitbucket.org‘下所有键 print(config.items(‘bitbucket.org‘)) #找到‘bitbucket.org‘下所有键值对 print(config.get(‘bitbucket.org‘,‘compression‘)) # yes get方法Section下的key对应的value
增删改
import configparser config = configparser.ConfigParser() config.read(‘example.ini‘) config.add_section(‘yuan‘) config.remove_section(‘bitbucket.org‘) config.remove_option(‘topsecret.server.com‘,"forwardx11") config.set(‘topsecret.server.com‘,‘k1‘,‘11111‘) config.set(‘yuan‘,‘k2‘,‘22222‘) config.write(open(‘new2.ini‘, "w"))
logging
一键控制
排错的时候需要打印很多细节来帮助排错
严重的错误记录下来
有一些用户行为 有没有错都要记录下来
函数式简单配置
import logginglogging.debug(‘debug message‘) # 低级别的 排错 信息logging.info(‘info message‘) # 正常信息logging.warning(‘warning message‘) # 警告信息logging.error(‘error message‘) # 错误信息logging.critical(‘critical message‘) #高级别的 严重错误信息
basicconfig 简单 能做的事情相对少
import logging logging.basicConfig(level=logging.WARNING, format=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘, datefmt=‘%a, %d %b %Y %H:%M:%S‘) try: int(input(‘num >>‘)) except ValueError: logging.error(‘输入的值不是一个数字‘) logging.debug(‘debug message‘) # 低级别的 # 排错信息 logging.info(‘info message‘) # 正常信息 logging.warning(‘warning message‘) # 警告信息 logging.error(‘error message‘) # 错误信息 logging.critical(‘critical message‘) # 高级别的 # 严重错误信息 print(‘%(key)s‘%{‘key‘:‘value‘}) print(‘%s‘%(‘key‘,‘value‘))
中文的乱码问题不能解决 不能同时往文件和屏幕上输出配置log对象 稍微有点复杂 能做的事情相对多
import logginglogger = logging.getLogger()fh = logging.FileHandler(‘log.log‘,encoding=‘utf-8‘) # 可以设置中俄sh = logging.StreamHandler() #创建屏幕控制对象formatter = logging.Formatter(‘%(asctime)s - %(name)s - %(levelname)s - %(message)s‘)formatter2 = logging.Formatter(‘%(asctime)s - %(name)s - %(levelname)s[line:%(lineno)d] %(message)s‘) #文件操作符和格式关联fh.setFormatter(formatter)sh.setFormatter(formatter2)#logger对象和文件操作符管理logger.addHandler(fh)logger.addHandler(sh)logger.debug(‘logger debug message‘)logger.info(‘logger info message‘)logger.warning(‘警告错误‘)logger.error(‘logger error message‘)logger.critical(‘logger critical message‘) #程序充分解耦#让程序变得更灵活
原文地址:https://www.cnblogs.com/rssblogs/p/10990546.html
时间: 2024-10-04 13:07:34