MCPcopy Create free account
hub / github.com/BIT-DataLab/LakeBench / get

Method get

join/LSH/datasketch/storage.py:132–137  ·  view source on GitHub ↗

Get list of values associated with a key Returns empty list ([]) if `key` is not found

(self, key)

Source from the content-addressed store, hash-verified

130
131 @abstractmethod
132 def get(self, key):
133 '''Get list of values associated with a key
134
135 Returns empty list ([]) if `key` is not found
136 '''
137 pass
138
139 def getmany(self, *keys):
140 return [self.get(key) for key in keys]

Callers 15

__getitem__Method · 0.95
getmanyMethod · 0.95
BreadthFirstSearchMethod · 0.45
computeRelationSemanticsFunction · 0.45
computeColumnSemanticsFunction · 0.45
query_opendata.pyFile · 0.45
computeRelationSemanticsFunction · 0.45
computeColumnSemanticsFunction · 0.45
count_levelFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected