本文整理汇总了Python中Time.stringtotime方法的典型用法代码示例。如果您正苦于以下问题:Python Time.stringtotime方法的具体用法?Python Time.stringtotime怎么用?Python Time.stringtotime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Time
的用法示例。
在下文中一共展示了Time.stringtotime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_incfile_info
# 需要导入模块: import Time [as 别名]
# 或者: from Time import stringtotime [as 别名]
def get_incfile_info(basename):
"""Returns None or tuple of
(is_compressed, timestr, type, and basename)"""
dotsplit = basename.split(".")
if dotsplit[-1] == "gz":
compressed = 1
if len(dotsplit) < 4: return None
timestring, ext = dotsplit[-3:-1]
else:
compressed = None
if len(dotsplit) < 3: return None
timestring, ext = dotsplit[-2:]
if Time.stringtotime(timestring) is None: return None
if not (ext == "snapshot" or ext == "dir" or
ext == "missing" or ext == "diff" or ext == "data"):
return None
if compressed: basestr = ".".join(dotsplit[:-3])
else: basestr = ".".join(dotsplit[:-2])
return (compressed, timestring, ext, basestr)
示例2: getinctime
# 需要导入模块: import Time [as 别名]
# 或者: from Time import stringtotime [as 别名]
def getinctime(self):
"""Return time in seconds of an increment file"""
return Time.stringtotime(self.inc_timestr)