摘要:
python之loggin模块:提供了标准的日志接口,通过该模块可以存储各种格式的日志,loggin日志可以分为debug、info、warning、error和critical五种级别。 1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 4 阅读全文
posted @ 2020-10-21 17:15
Zombie☠️
阅读(123)
评论(0)
推荐(0)
摘要:
python之hashlib模块:主要提供字符加密功能,python3中将md5和sha模块整合到了hashlib模块,支持md5,sha1, sha224, sha256, sha384, sha512等算法 1 #!/usr/bin/env python3 2 # -*- coding: utf 阅读全文
posted @ 2020-10-21 10:54
Zombie☠️
阅读(128)
评论(0)
推荐(0)