Files
2026-07-13 13:05:14 +08:00

19 lines
447 B
Python

"""Sets the recording properties."""
import pyarrow as pa
from rerun.experimental import ViewerClient
client = ViewerClient.connect(url="rerun+http://127.0.0.1:9876/proxy")
client.send_table(
"Hello from Python",
pa.RecordBatch.from_pydict({
"id": [1, 2, 3],
"url": [
"https://www.rerun.io",
"https://github.com/rerun-io/rerun",
"https://crates.io/crates/rerun",
],
}),
)