MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / data

Method data

python/database.py:227–232  ·  view source on GitHub ↗

Get the backing kvs data with snapshot fields (read-only)

(self)

Source from the content-addressed store, hash-verified

225
226 @property
227 def data(self) -> KeyValueStore:
228 """Get the backing kvs data with snapshot fields (read-only)"""
229 assert self.has_contents
230 handle = core.BNReadSnapshotData(self.handle)
231 assert handle is not None
232 return KeyValueStore(handle=handle)
233
234 def has_ancestor(self, other: 'Snapshot') -> bool:
235 """Determine if this snapshot has another as an ancestor"""

Callers

nothing calls this directly

Calls 1

KeyValueStoreClass · 0.70

Tested by

no test coverage detected