Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 3
0
 def find_newer(cls, timestamp, **kw):
     return ArtifactInfo.find_newer(timestamp, **kw)
Ejemplo n.º 4
0
 def find_newer(cls, timestamp, **kw):
     return ArtifactInfo.find_newer(timestamp, **kw)