lmgsanm

每天学习一点,每天进步一点点…… Tomorrow is another beatifull day

导航

2018年1月30日

python模块:logging

摘要: 1 # Copyright 2001-2016 by Vinay Sajip. All Rights Reserved. 2 # 3 # Permission to use, copy, modify, and distribute this software and its 4 # documen 阅读全文

posted @ 2018-01-30 20:45 lmgsanm 阅读(835) 评论(0) 推荐(0) 编辑

python模块:subprocess

摘要: 1 # subprocess - Subprocesses with accessible I/O streams 2 # 3 # For more information about this module, see PEP 324. 4 # 5 # Copyright (c) 2003-2005 阅读全文

posted @ 2018-01-30 20:14 lmgsanm 阅读(1886) 评论(0) 推荐(0) 编辑

python模块:hmac

摘要: 1 """HMAC (Keyed-Hashing for Message Authentication) Python module. 2 3 Implements the HMAC algorithm as described by RFC 2104. 4 """ 5 6 import warni 阅读全文

posted @ 2018-01-30 19:55 lmgsanm 阅读(750) 评论(0) 推荐(0) 编辑

python模块:hashlib

摘要: 1 #. Copyright (C) 2005-2010 Gregory P. Smith (greg@krypto.org) 2 # Licensed to PSF under a Contributor Agreement. 3 # 4 5 __doc__ = """hashlib module 阅读全文

posted @ 2018-01-30 19:25 lmgsanm 阅读(581) 评论(0) 推荐(0) 编辑

python模块:configparser

摘要: 1 """Configuration file parser. 2 3 A configuration file consists of sections, lead by a "[section]" header, 4 and followed by "name: value" entries, with continuations and such in 5 ... 阅读全文

posted @ 2018-01-30 19:03 lmgsanm 阅读(1364) 评论(0) 推荐(0) 编辑