Initialization
def rerun.init(application_id, spawn=False, default_enabled=True, strict=False)
Initialize the Rerun SDK with a user-chosen application id (name).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
application_id |
str
|
Your Rerun recordings will be categorized by this application id, so try to pick a unique one for each application that uses the Rerun SDK. For example, if you have one application doing object detection
and another doing camera calibration, you could have
|
required |
spawn |
bool
|
Spawn a Rerun Viewer and stream logging data to it.
Short for calling |
False
|
default_enabled |
bool
|
Should Rerun logging be on by default?
Can overridden with the RERUN env-var, e.g. |
True
|
strict |
bool
|
If |
False
|
def rerun.connect(addr=None)
def rerun.disconnect()
Closes all TCP connections, servers, and files.
Closes all TCP connections, servers, and files that have been opened with
[rerun.connect
], [rerun.serve
], [rerun.save
] or [rerun.spawn
].
def rerun.spawn(port=9876, connect=True)
Spawn a Rerun Viewer, listening on the given port.
This is often the easiest and best way to use Rerun. Just call this once at the start of your program.
You can also call rerun.init with a spawn=True
argument.
Parameters:
def rerun.serve(open_browser=True, web_port=None, ws_port=None)
Serve log-data over WebSockets and serve a Rerun web viewer over HTTP.
You can connect to this server using python -m rerun
.
WARNING: This is an experimental feature.
This function returns immediately.
Parameters:
def rerun.memory_recording()
Streams all log-data to a memory buffer.
This can be used to display the RRD to alternative formats such as html. See: rerun.MemoryRecording.as_html.
Returns:
Type | Description |
---|---|
MemoryRecording
|
A memory recording object that can be used to read the data. |