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

Method unique_id

python/collaboration/remote.py:81–90  ·  view source on GitHub ↗

Unique id. If metadata has not been pulled, it will be pulled upon calling this. :return: Id string :raises RuntimeError: If there was an error pulling metadata.

(self)

Source from the content-addressed store, hash-verified

79
80 @property
81 def unique_id(self) -> str:
82 """
83 Unique id. If metadata has not been pulled, it will be pulled upon calling this.
84
85 :return: Id string
86 :raises RuntimeError: If there was an error pulling metadata.
87 """
88 if not self.has_loaded_metadata:
89 self.load_metadata()
90 return core.BNRemoteGetUniqueId(self._handle)
91
92 @property
93 def name(self) -> str:

Callers

nothing calls this directly

Calls 1

load_metadataMethod · 0.95

Tested by

no test coverage detected