A simple and elegant checkbox tree for Streamlit.
Project description
🐙 streamlit_tree_select
A simple and elegant checkbox tree for Streamlit. Build on react-checkbox-tree.
Installation
streamlit-tree-select is distributed via. PyPi:
pip install streamlit-tree-select
Quickstart
Using streamlit-tree-select is as simple as importing tree_select and passing a list of nodes.
import streamlit as st
from streamlit_tree_select import tree_select
st.title("🐙 Streamlit-tree-select")
st.subheader("A simple and elegant checkbox tree for Streamlit.")
# Create nodes to display
nodes = [
{"label": "Folder A", "value": "folder_a"},
{
"label": "Folder B",
"value": "folder_b",
"children": [
{"label": "Sub-folder A", "value": "sub_a"},
{"label": "Sub-folder B", "value": "sub_b"},
{"label": "Sub-folder C", "value": "sub_c"},
],
},
{
"label": "Folder C",
"value": "folder_c",
"children": [
{"label": "Sub-folder D", "value": "sub_d"},
{
"label": "Sub-folder E",
"value": "sub_e",
"children": [
{"label": "Sub-sub-folder A", "value": "sub_sub_a"},
{"label": "Sub-sub-folder B", "value": "sub_sub_b"},
],
},
{"label": "Sub-folder F", "value": "sub_f"},
],
},
]
return_select = tree_select(nodes)
st.write(return_select)
Properties
The tree select can be customized using the following parameters:
| Property | Type | Description | Default |
|---|---|---|---|
nodes |
list | A list containing tree nodes and their children. A need needs to include a label and a value. Furthermore, a list of children can be added. Further possible parameters: className (A class Name to add to the node, default None), disabled (Whether the node should be disabled, default False), showCheckbox (Whether the node should show a checkbox, default True), title (A custom title attribute for th node, default None). |
[] |
check_model |
str | Specifies which selected nodes should be returned. Possible inputs: "all", "leaf". | 'all' |
checked |
list | A list of selected nodes. | [] |
direction |
str | Specify the direction of the component. Left-to-right ('ltr') or right-to-left ('rtl'). | 'ltr' |
disabled |
bool | If True, the component will be disabled and cannot be used. | False |
expand_disabled |
bool | If True, nodes cannot be expanded. | False |
expand_on_click |
bool | If True, nodes will be expanded by clicking on the labels. | False |
expanded |
list | A list of expanded node values. | [] |
no_cascade |
bool | If True, toggling a parent node will not cascade its check state to its children. | False |
only_leaf_checkboxes |
bool | If True, checkboxes will only be shown for leaf nodes. | False |
show_expand_all |
bool | If True buttons for expanding and collapsing all parent nodes will appear in the tree. | False |
Returns
tree_select returns a dictionary containing the keys checked node values as well as expanded node values.
| Property | Type | Description | Default |
|---|---|---|---|
checked |
list | A list of expanded node values. | [] |
expanded |
list | A list of expanded node values. | [] |
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 streamlit_tree_select_dark-0.0.11.tar.gz.
File metadata
- Download URL: streamlit_tree_select_dark-0.0.11.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9ea23c038b1f38ab33ca9d6c2d75ba8d0cc0a2de3d221a062b77d326263c864
|
|
| MD5 |
818df4f83b39783260de47913846e4ba
|
|
| BLAKE2b-256 |
0756a85f061a0cec2e567c6912a82751e54a57b12daa011e9e8901cd45143e82
|
File details
Details for the file streamlit_tree_select_dark-0.0.11-py3-none-any.whl.
File metadata
- Download URL: streamlit_tree_select_dark-0.0.11-py3-none-any.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc243f44b1e713eaa760a5f54980239f54b33f1c123c2c4bfa427f2f2cca7eb1
|
|
| MD5 |
7be4a53d46e058cdf77c5f18683fb061
|
|
| BLAKE2b-256 |
ba513b6761d9ab11d4decfee4e2b924efb8855afd129a830211b5689e1ada2b6
|