Real-time plotting, 3D scenes, and control UIs for robotics.
Project description
HEBI Charts
2D and 3D visualization for low-overhead rendering of high-speed telemetry, with a focus on robotics. Data ingestion is fully decoupled from the UI thread, so you can push updates from a 1 MHz control loop without stuttering the 60 FPS render thread.
Standalone and hardware-agnostic. It takes raw numbers, so it works with any actuator, sensor, or data source.
pip install hebi-charts
Quick start
Runnable examples and the full documentation live in hebi-charts-examples.
import time
import random
import hebi_charts
window = hebi_charts.GridWindow(title="Python", size=(800, 600))
chart = window.add_line_chart(title="Random Walk", xlabel="sample", ylabel="rnd(x)")
line = chart.add_line("walk")
x, y = 0, 0
window.show()
while window.is_showing():
time.sleep(0.001) # optional: reduce the rate
x += 1
y += random.uniform(-1, 1)
line.add_point(x, y) # non-blocking
Ctrl/Cmd + C copies the window to the clipboard, Ctrl/Cmd + S saves a PNG.
macOS
Cocoa must own the main thread, so you must wrap the entry point with run_application for a thread hand-off. On other platforms it calls the application code directly, so the code below is portable on all platforms.
def main():
... # your application logic
if __name__ == "__main__":
hebi_charts.run_application(main)
Requirements
The native library is bundled in the wheel. There is no compilation step or extra download step.
| Platform | Wheel |
|---|---|
| Windows x86-64 | win_amd64 |
| Linux x86-64 (glibc) | manylinux_*_x86_64 |
| macOS Intel | macosx_*_x86_64 |
| macOS Apple Silicon | macosx_*_arm64 |
The target system needs local rendering with hardware GPU acceleration. Headless and software rendering are not supported yet. On Linux the library links against the system GTK 3, X11, and OpenGL stack.
There is no source distribution, so an unsupported platform fails at install time with pip's "no matching distribution" error rather than at import.
For the bulk array APIs, install NumPy alongside it:
pip install "hebi-charts[numpy]"
License
Free to use, including commercially, but not open source — the library is
distributed in binary form only. See the LICENSE file included in the
distribution, or https://www.hebirobotics.com/software-license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hebi_charts-0.9.4-py3-none-win_amd64.whl.
File metadata
- Download URL: hebi_charts-0.9.4-py3-none-win_amd64.whl
- Upload date:
- Size: 33.7 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d2b1bedb16041d6cc409558994d173e4dbc27b77aba2fd0e563e626574bb7de
|
|
| MD5 |
65421b54d587e7cf30e853391b79a961
|
|
| BLAKE2b-256 |
4532a4371c5ed89e170520b8a01e108e2d7e324ae2f1dddedafb561ea781bccf
|
Provenance
The following attestation bundles were made for hebi_charts-0.9.4-py3-none-win_amd64.whl:
Publisher:
publish-native-charts-pypi.yml on HebiRobotics/HEBI-Java
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hebi_charts-0.9.4-py3-none-win_amd64.whl -
Subject digest:
2d2b1bedb16041d6cc409558994d173e4dbc27b77aba2fd0e563e626574bb7de - Sigstore transparency entry: 2302990632
- Sigstore integration time:
-
Permalink:
HebiRobotics/HEBI-Java@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/HebiRobotics
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-native-charts-pypi.yml@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file hebi_charts-0.9.4-py3-none-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: hebi_charts-0.9.4-py3-none-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 34.0 MB
- Tags: Python 3, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9825f3fb1bdfc26924c6ab96ea1357bf2d061c87c42fb36611ca3391c5ccd3e8
|
|
| MD5 |
18b36863fc226f737e382579d21ade4a
|
|
| BLAKE2b-256 |
37b1e73a51ca1444df5c6eac43078576c2e0e1a2b5d607599591b6c4e049e536
|
Provenance
The following attestation bundles were made for hebi_charts-0.9.4-py3-none-manylinux_2_34_x86_64.whl:
Publisher:
publish-native-charts-pypi.yml on HebiRobotics/HEBI-Java
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hebi_charts-0.9.4-py3-none-manylinux_2_34_x86_64.whl -
Subject digest:
9825f3fb1bdfc26924c6ab96ea1357bf2d061c87c42fb36611ca3391c5ccd3e8 - Sigstore transparency entry: 2302990555
- Sigstore integration time:
-
Permalink:
HebiRobotics/HEBI-Java@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/HebiRobotics
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-native-charts-pypi.yml@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file hebi_charts-0.9.4-py3-none-macosx_15_0_x86_64.whl.
File metadata
- Download URL: hebi_charts-0.9.4-py3-none-macosx_15_0_x86_64.whl
- Upload date:
- Size: 43.2 MB
- Tags: Python 3, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20da799e18afc5fa4ee1c0b2de443ac5f862adae54ef171d84f1afc74cc17a10
|
|
| MD5 |
b7aeb3267566d942bcec413108ef93e6
|
|
| BLAKE2b-256 |
285380b17f4d2097bd86ffc48b89ed1f50dfd1f2af262ea17e706c4df9615ba1
|
Provenance
The following attestation bundles were made for hebi_charts-0.9.4-py3-none-macosx_15_0_x86_64.whl:
Publisher:
publish-native-charts-pypi.yml on HebiRobotics/HEBI-Java
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hebi_charts-0.9.4-py3-none-macosx_15_0_x86_64.whl -
Subject digest:
20da799e18afc5fa4ee1c0b2de443ac5f862adae54ef171d84f1afc74cc17a10 - Sigstore transparency entry: 2302990473
- Sigstore integration time:
-
Permalink:
HebiRobotics/HEBI-Java@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/HebiRobotics
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-native-charts-pypi.yml@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file hebi_charts-0.9.4-py3-none-macosx_15_0_arm64.whl.
File metadata
- Download URL: hebi_charts-0.9.4-py3-none-macosx_15_0_arm64.whl
- Upload date:
- Size: 43.1 MB
- Tags: Python 3, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
958750c1c26a13288736381a4055ff3ddd294c786815021f8cb35b8b34857dde
|
|
| MD5 |
22b204f81fdced825b39dcbb92c5cda5
|
|
| BLAKE2b-256 |
212ab461b96ce98cc32bd63673e688d544b50a21a4c3240cbb299e0e35856804
|
Provenance
The following attestation bundles were made for hebi_charts-0.9.4-py3-none-macosx_15_0_arm64.whl:
Publisher:
publish-native-charts-pypi.yml on HebiRobotics/HEBI-Java
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hebi_charts-0.9.4-py3-none-macosx_15_0_arm64.whl -
Subject digest:
958750c1c26a13288736381a4055ff3ddd294c786815021f8cb35b8b34857dde - Sigstore transparency entry: 2302990393
- Sigstore integration time:
-
Permalink:
HebiRobotics/HEBI-Java@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/HebiRobotics
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-native-charts-pypi.yml@afa9f53d959b18bcab9e2696682260156b2e75d7 -
Trigger Event:
workflow_dispatch
-
Statement type: