No project description provided
Project description
graph_widget
An anywidget implementation of force-graph (https://github.com/vasturiano/force-graph). It includes a brush (Cmd-drag).
Installation
pip install graph_widget
or with uv:
uv add graph_widget
Example
An example marimo script (available as example.py => run with uv run marimo edit example.py):
import graph_widget
import pandas as pd
import json
import requests
url = "https://raw.githubusercontent.com/observablehq/sample-datasets/refs/heads/main/miserables.json"
response = requests.get(url)
data = response.json()
repulsion_slider = mo.ui.slider(
start=-100, stop=500, step=10, value=1, debounce=False, label="Repulsion"
)
node_scale_slider = mo.ui.slider(
start=1, stop=20, step=1, value=3, debounce=True, label="Node scale"
)
colour_feature_dropdown = mo.ui.dropdown(
options=list(data["nodes"][3].keys()), value="kind", label="Colour by"
)
colour_scale_type_radio = mo.ui.radio(options=["diverging", "sequential"], value="diverging", label="Colour scale type")
data_graph = mo.ui.anywidget(
graph_widget.ForceGraphWidget(
data=data,
repulsion=2,
node_scale=2,
colour_feature="",
colour_scale_type=""
)
)
data_graph.repulsion = repulsion_slider.value
data_graph.node_scale = node_scale_slider.value
data_graph.colour_feature = colour_feature_dropdown.value
data_graph.colour_scale_type= colour_scale_type_radio.value
mo.hstack([data_graph,
mo.vstack([
repulsion_slider,
node_scale_slider,
colour_feature_dropdown,
colour_scale_type_radio])], justify="start")
selected = data_graph.selected_ids
Arguments
repulsionnode_scalecolour_featurecolour_scale_type: can be empty string, or"diverging"
Development
We recommend using uv for development. It will automatically manage virtual environments and dependencies for you.
uv run marimo edit example.py
Changes made in src/graph_widget/static/ will be reflected in the notebook.
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 graph_widget-0.1.6.tar.gz.
File metadata
- Download URL: graph_widget-0.1.6.tar.gz
- Upload date:
- Size: 178.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fb08fe56627f26e35f2fab0a20c2f6a37396b2c2620dbde00213a6677307f58
|
|
| MD5 |
2a187472d0d4613cd52d3bec8333e8cb
|
|
| BLAKE2b-256 |
f9337a002dcd1d36798c0df2b75095f1e3886ede58a5a84766c67200cd172612
|
File details
Details for the file graph_widget-0.1.6-py2.py3-none-any.whl.
File metadata
- Download URL: graph_widget-0.1.6-py2.py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2aa7d13f68d31d52c288ad32ece0832a4b9115aedaff8d3c87cb3e58600cd91b
|
|
| MD5 |
7751057374a61f66346ee6df1b293d11
|
|
| BLAKE2b-256 |
9ec9e5af08909862e14f0af955f43aa3912eebd4d3055f944e3698e0cf5ab9d6
|