昨日内容回顾
-
第三方模块的下载
使用pip语句下载,使用模块名==版本号指定模块版本,使用-i 仓库地址 改变下载源。
使用pycharm下载操作更简单。
-
request模块
模拟浏览器向指定网址发送请求获取其返回结果。
-
openpyxl模块
通过程序编辑excel文件,可进行文件的创建、工作表编辑、单元格编辑。
今日内容概要
- 加密模块hashlib
- 子进程模块subprocess
- 日志模块logging
今日内容详细
加密模块hashlib
hashlib提供了多种加密数据的方法,如md5、sha系列、shake等。各种加密方法的使用方式类似。
import hashlib
hash_method = hashlib.md5 # 指定加密方式
hash_method.update() # 传入需要加密的数据
hash_method.hexdigest() # 获取加密后的密文
常见加密策略:对用户数据添加特定数据后进行加密。如操作时间、用户名片段等。
加密实际应用场景:
- 用户数据加密
- 数据一致性校验
- 大型数据加密使用片段加密的方式
子进程模块subprocess
模拟操作系统终端执行命令,并获取其执行结果。
import subprocess
res = subprocess.Popen(
'asdas', # 操作系统要执行的命令
shell=True, # 固定配置
stdin=subprocess.PIPE, # 输入命令
stdout=subprocess.PIPE, # 输出结果
)
print('正确结果', res.stdout.read().decode('gbk')) # 获取操作系统执行命令之后的正确结果
print('错误结果', res.stderr) # 获取操作系统执行命令之后的错误结果
日志模块logging
日志的使用模板
import logging
import logging.config
# 定义日志输出格式 开始
standard_format = '[%(asctime)s][%(threadName)s:%(thread)d][task_id:%(name)s][%(filename)s:%(lineno)d]' \
'[%(levelname)s][%(message)s]' # 其中name为getlogger指定的名字
simple_format = '[%(levelname)s][%(asctime)s][%(filename)s:%(lineno)d]%(message)s'
# 自定义文件路径
logfile_path = 'a3.log'
LOGGING_DIC = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'standard': {
'format': standard_format
},
'simple': {
'format': simple_format
},
},
'filters': {}, # 过滤日志
'handlers': {
# 打印到终端的日志
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler', # 打印到屏幕
'formatter': 'simple'
},
# 打印到文件的日志,收集info及以上的日志
'default': {
'level': 'DEBUG',
'class': 'logging.handlers.RotatingFileHandler', # 保存到文件
'formatter': 'standard',
'filename': logfile_path, # 日志文件
'maxBytes': 1024 * 1024 * 5, # 日志大小 5M
'backupCount': 5,
'encoding': 'utf-8', # 日志文件的编码,再也不用担心中文log乱码了
},
},
'loggers': {
# logging.getLogger(__name__)拿到的logger配置
'': {
'handlers': ['default', 'console'], # 这里把上面定义的两个handler都加上,即log数据既写入文件又打印到屏幕
'level': 'DEBUG',
'propagate': True, # 向上(更高level的logger)传递
}, # 当键不存在的情况下 (key设为空字符串)默认都会使用该k:v配置
# '购物车记录': {
# 'handlers': ['default','console'], # 这里把上面定义的两个handler都加上,即log数据既写入文件又打印到屏幕
# 'level': 'WARNING',
# 'propagate': True, # 向上(更高level的logger)传递
# }, # 当键不存在的情况下 (key设为空字符串)默认都会使用该k:v配置
},
}
logging.config.dictConfig(LOGGING_DIC) # 自动加载字典中的配置
# logger1 = logging.getLogger('购物车记录')
# logger1.warning('尊敬的VIP客户 晚上好 您又来啦')
# logger1 = logging.getLogger('注册记录')
# logger1.debug('jason注册成功')
标签:hashlib,加密,subprocess,模块,logging,日志
From: https://www.cnblogs.com/akazukis/p/16834316.html