re_viewer 0.30.2

The Rerun viewer
Documentation
# Python quick start

## Installing the Rerun SDK

The Rerun SDK is available on [PyPI](https://pypi.org/) under the
[`rerun-sdk`](https://pypi.org/project/rerun-sdk/) name. It can be installed like any other
Python package:

```sh
pip install rerun-sdk
```

## Logging your own data

Copy and paste the following snippet in a new Python file and execute it to create a recording in a new viewer:

```python
${EXAMPLE_CODE_PYTHON_SPAWN}
```

This will spawn a new Viewer and open a new recording that looks like this:

![Demo recording](https://static.rerun.io/quickstart2_simple_cube/632a8f1c79f70a2355fad294fe085291fcf3a8ae/768w.png)

${HOW_DOES_IT_WORK}