MCPcopy Create free account
hub / github.com/Improbable-AI/VisionProTeleop / get

Method get

avp_stream/streamer.py:370–374  ·  view source on GitHub ↗

Dict-style get() method.

(self, key: str, default: Any = None)

Source from the content-addressed store, hash-verified

368 return self._raw is not None and key in self._raw
369
370 def get(self, key: str, default: Any = None) -> Any:
371 """Dict-style get() method."""
372 if self._raw is None:
373 return default
374 return self._raw.get(key, default)
375
376 def keys(self):
377 """Return dict keys."""

Callers 15

fetchFunction · 0.45
handleMessageMethod · 0.45
handleJoinMethod · 0.45
handleLeaveMethod · 0.45
handleDisconnectMethod · 0.45
relayToPeerMethod · 0.45
draw_camera_frameFunction · 0.45
print_calibration_infoFunction · 0.45
print_intrinsic_infoFunction · 0.45
__init__Method · 0.45
update_frameMethod · 0.45
_set_axis_limitsMethod · 0.45

Calls

no outgoing calls

Tested by 2

run_roundtrip_testFunction · 0.36