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

Function create_remote

python/collaboration/__init__.py:78–86  ·  view source on GitHub ↗

Create a Remote and add it to the list of known remotes (saved to Settings) :param name: Identifier for remote :param address: Base address (HTTPS) for all api requests

(name: str, address: str)

Source from the content-addressed store, hash-verified

76
77
78def create_remote(name: str, address: str) -> 'Remote':
79 """
80 Create a Remote and add it to the list of known remotes (saved to Settings)
81
82 :param name: Identifier for remote
83 :param address: Base address (HTTPS) for all api requests
84 """
85 binaryninja._init_plugins()
86 return Remote(core.BNCollaborationCreateRemote(name, address))
87
88
89def remove_known_remote(remote: 'Remote') -> None:

Callers

nothing calls this directly

Calls 1

RemoteClass · 0.70

Tested by

no test coverage detected