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

Function get_remote_by_name

python/collaboration/__init__.py:129–141  ·  view source on GitHub ↗

Get Remote by name :param name: Name of Remote :return: Remote, if found, else None

(name: str)

Source from the content-addressed store, hash-verified

127
128
129def get_remote_by_name(name: str) -> Optional['Remote']:
130 """
131 Get Remote by name
132
133 :param name: Name of Remote
134 :return: Remote, if found, else None
135 """
136 binaryninja._init_plugins()
137 value = core.BNCollaborationGetRemoteByName(name)
138 if value is None:
139 return None
140 result = Remote(handle=value)
141 return result
142
143
144def load_remotes():

Callers

nothing calls this directly

Calls 1

RemoteClass · 0.70

Tested by

no test coverage detected