Visualise complex data structures in real time
Project description
Explainable
Explainable is a project for real time visualisation of complex data structures with minimal effort.
This project was created by Numan Team.
Visualisation runs on our website, so you only need install the library and initialise it in your code.
Installation
pip install -U explainable
Usage
- Install using
pip - Import the library in your code
- Add
explainable.init()in your code to start the server - Select data to observe with
data = explainable.observe("my_view", data) - Go to https://explainable.numan.ai/
import time
import explainable
# start the server
explainable.init()
# create your data
lst = [0, 1, 2]
# start observing
lst = explainable.observe("view1", lst)
# change your data
while True:
lst[0] += 1
lst[1] -= 1
time.sleep(1)
Currently supported data structures:
- dataclass
- list
- dict
- enums
Requirements
Python 3.7 or higher.
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
Built Distribution
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 explainable-1.1.0.tar.gz.
File metadata
- Download URL: explainable-1.1.0.tar.gz
- Upload date:
- Size: 9.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96a8343700c327ebd64ccc1e653bf07d321588b14af4760bf85224802d5adaa8
|
|
| MD5 |
0cfe5804f00bdf6f5d76f9d1c94fde78
|
|
| BLAKE2b-256 |
14d32ef3b256a88df7fee3638074144e12fc9f68958b3e488a954c7283d2edb2
|
File details
Details for the file explainable-1.1.0-py3-none-any.whl.
File metadata
- Download URL: explainable-1.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f548dcd0ad9bfdcd21a2c6942cbb3b68fee85cdd13f7c1dcfbdac70bf5c24b7
|
|
| MD5 |
26e9a0b14b909f3b46b628689692f9bf
|
|
| BLAKE2b-256 |
61ac2aebf99a4d4b20fb5dec8d9646bf521b219bdc2792b2df8f4d291894673b
|