本文整理汇总了Python中socorro.lib.util.DotDict.timestamp方法的典型用法代码示例。如果您正苦于以下问题:Python DotDict.timestamp方法的具体用法?Python DotDict.timestamp怎么用?Python DotDict.timestamp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类socorro.lib.util.DotDict
的用法示例。
在下文中一共展示了DotDict.timestamp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_raw_crash
# 需要导入模块: from socorro.lib.util import DotDict [as 别名]
# 或者: from socorro.lib.util.DotDict import timestamp [as 别名]
def make_raw_crash(self, form):
raw_crash = DotDict()
for name in form.keys():
if isinstance(form[name], basestring):
raw_crash[name] = form[name]
else:
raw_crash[name] = form[name].value
raw_crash.timestamp = time.time()
return raw_crash
示例2: make_raw_crash
# 需要导入模块: from socorro.lib.util import DotDict [as 别名]
# 或者: from socorro.lib.util.DotDict import timestamp [as 别名]
def make_raw_crash(self, form):
names = (name for name in form.keys() if name != self.dump_field)
raw_crash = DotDict()
for name in names:
if isinstance(form[name], basestring):
raw_crash[name] = form[name]
else:
raw_crash[name] = form[name].value
raw_crash.timestamp = time.time()
return raw_crash