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

Method get

python/metadata.py:198–202  ·  view source on GitHub ↗
(self, key:str, default:Any=None)

Source from the content-addressed store, hash-verified

196 return core.BNMetadataGetBoolean(self.handle)
197
198 def get(self, key:str, default:Any=None) -> Any:
199 try:
200 return self[key]
201 except (KeyError, IndexError, ValueError, NotImplementedError):
202 return default
203
204 @property
205 def value(self):

Callers 10

do_dumpMethod · 0.45
do_breakpointMethod · 0.45
do_overrideMethod · 0.45
_from_cacheMethod · 0.45
acquireMethod · 0.45
_from_cacheMethod · 0.45
_init_pluginsFunction · 0.45
__init__Method · 0.45
_from_cacheMethod · 0.45
_from_cacheMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected