示例#1
0
 def find_artifact_counts_newer(cls, datetime, **kw):
     counts = KeyCounter()
     for art in ArtifactInfo.find_newer(datetime, **kw):
         counts.increment(art.source_name)
     return counts.to_hash()
示例#2
0
 def find_artifact_counts_newer(cls, datetime, **kw):
     counts = KeyCounter()
     for art in ArtifactInfo.find_newer(datetime, **kw):
         counts.increment(art.source_name)
     return counts.to_hash()
示例#3
0
 def find_newer(cls, timestamp, **kw):
     return ArtifactInfo.find_newer(timestamp, **kw)
示例#4
0
 def find_newer(cls, timestamp, **kw):
     return ArtifactInfo.find_newer(timestamp, **kw)