MCPcopy
hub / github.com/plotly/dash / split_callback_id

Function split_callback_id

dash/_utils.py:193–198  ·  view source on GitHub ↗
(callback_id)

Source from the content-addressed store, hash-verified

191# hooked up to a new back end, which will only happen in special cases like
192# embedded
193def split_callback_id(callback_id):
194 if callback_id.startswith(".."):
195 return [split_callback_id(oi) for oi in callback_id[2:-2].split("...")]
196
197 id_, prop = callback_id.rsplit(".", 1)
198 return {"id": id_, "property": prop}
199
200
201def stringify_id(id_) -> str:

Callers 6

get_task_resultFunction · 0.90
outputs_by_propMethod · 0.90
outputsMethod · 0.90
_expand_output_specFunction · 0.90
_prepare_callbackMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…