Skip to main content

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


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)

Uploaded Source

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

Hashes for dash-id-utils-0.0.2.tar.gz
Algorithm Hash digest
SHA256 3f2fe92043cdd28f30142d8f9753fccc0cc2f079162cb05cec3fdbd8cbff6ac2
MD5 7dd5a94d734085c00658c37948495087
BLAKE2b-256 32931d4a3f875c56457bcd7934cf91ead5c46cd8d14672d9d7f326a5cd9eab79

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page