No project description provided
Project description
Dash ID Utils
Install
pip install dash-id-utils
Usage
from dash import html, ALL, callback
class AnnotatedImageListSidebar(html.Div):
class slots:
id = DashIDGenerator(page="session", type="view", name="image-list")
image = DashIDGenerator(page="session", type="view", name="image")
def __init__(self, items, **kwargs):
self.items = items
super().__init__(self.render(), id=self.slots.id.get_identifier(), **kwargs)
def render(self):
return [
html.Img(src=item.url, id=self.slots.image.get_identifier(item.id))
for item in items
]
@callback(
[...]
AnnotatedImageListSidebar.slots.image.get_input("n_clicks", ALL),
)
def x(all_n_clicks):
...
@callback(
[
AnnotatedImageListSidebar.slots.id.get_output("children"),
]
...
)
def 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
dash-id-utils-0.0.2.tar.gz
(2.2 kB
view details)
File details
Details for the file dash-id-utils-0.0.2.tar.gz
.
File metadata
- Download URL: dash-id-utils-0.0.2.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f2fe92043cdd28f30142d8f9753fccc0cc2f079162cb05cec3fdbd8cbff6ac2 |
|
MD5 | 7dd5a94d734085c00658c37948495087 |
|
BLAKE2b-256 | 32931d4a3f875c56457bcd7934cf91ead5c46cd8d14672d9d7f326a5cd9eab79 |