码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习之路--模块2

时间:2019-06-09 13:13:44      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:info   细节   注意   功能   字符   get   hashlib   字节   mha   

hashlib

提供摘要算法的模块

技术图片
import hashlib   # 提供摘要算法的模块
sha = hashlib.md5()
sha.update(balex3714)
print(sha.hexdigest())
# aee949757a2e698417463d47acac93df
hashlib

 

不管算法多么不同,摘要的功能始终不变
对于相同的字符串使用同一个算法进行摘要,得到的值总是不变的
使用不同算法对相同的字符串进行摘要,得到的值应该不同
不管使用什么算法,hashlib的方式永远不变
sha 算法 随着 算法复杂程度的增加 我摘要的时间成本空间成本都会增加

摘要算法
密码的密文存储
文件的一致性验证
在下载的时候 检查我们下载的文件和远程服务器上的文件是否一致
两台机器上的两个文件 你想检查这两个文件是否相等

加盐
技术图片
import hashlib
md5 = hashlib.md5(bytes(,encoding=utf-8))
# md5 = hashlib.md5()
md5.update(b123456)
print(md5.hexdigest())
加盐
动态加盐
用户名 密码
使用用户名的一部分或者 直接使用整个用户名作为盐

动态加盐

技术图片
import hashlib
md5 = hashlib.md5(bytes(,encoding=utf-8)+bdw)  # 加上需要加的字符
md5.update(b123456)
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
View Code

增删改

技术图片
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"))
View Code

logging

一键控制

排错的时候需要打印很多细节来帮助排错

严重的错误记录下来

有一些用户行为 有没有错都要记录下来

 

函数式简单配置

import logging
logging.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 logging
logger = 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‘)

#程序充分解耦
#让程序变得更灵活

 



 

Python学习之路--模块2

标签:info   细节   注意   功能   字符   get   hashlib   字节   mha   

原文地址:https://www.cnblogs.com/rssblogs/p/10990546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!