A package for building realtime dashboards. Originally designed for monitoring the progress of optimization problems.
Project description
charta
A package for building realtime dashboards. Originally designed for monitoring the progress of optimization problems.
Installation
charta is available on PyPi. You can
pip install charta
Quickstart
Run the server in the terminal with:
charta-server
Then open your browser to localhost:8889. The following code should draw a sine wave to the dashboard.
import numpy as np
from charta import Dashboard, Series, Chart
# Create some data.
x = np.linspace(0, np.pi)
y = np.sin(x)
# Get a reference to the dashboard.
dash = Dashboard.default()
# Add data to the dashboard.
dash.add_series(Series("x", x))
dash.add_series(Series("y", y))
dash.add_chart(Chart("chart", ["x", "y"]))
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 Distribution
charta-0.0a7.tar.gz
(16.4 kB
view details)
Built Distribution
charta-0.0a7-py3-none-any.whl
(24.3 kB
view details)
File details
Details for the file charta-0.0a7.tar.gz
.
File metadata
- Download URL: charta-0.0a7.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16f5c18894b25d0ea86cf1626698cfab9424997995f41ea7e9ff1143fbf8db58 |
|
MD5 | e2490ce98c9b6eddf743c19146344dd2 |
|
BLAKE2b-256 | ea32403a978d3db70457a273a32ef0526f9d18f99b467bfba86cb309255cb278 |
File details
Details for the file charta-0.0a7-py3-none-any.whl
.
File metadata
- Download URL: charta-0.0a7-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71d1fd01e1577589db531405215b6d57c6b92e8c1a10f126141357488a5e8b30 |
|
MD5 | c9083482ddc9ddba3f750961735e8d2b |
|
BLAKE2b-256 | 9844b85d5cf0a76497943bd543ffb86b778f3781d5f91cc5dac0a0fd088ee500 |