{"id":22645866,"url":"https://github.com/thelogicmaster/dash-callback-conglomerate","last_synced_at":"2025-08-09T12:32:10.868Z","repository":{"id":62566447,"uuid":"194782648","full_name":"TheLogicMaster/Dash-Callback-Conglomerate","owner":"TheLogicMaster","description":"Enable duplicated Dash inputs and outputs, and without changing a single callback.","archived":false,"fork":false,"pushed_at":"2019-07-04T20:53:20.000Z","size":10,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T20:21:23.376Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheLogicMaster.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.txt","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-02T03:35:31.000Z","updated_at":"2021-03-12T01:47:21.000Z","dependencies_parsed_at":"2022-11-03T17:47:38.964Z","dependency_job_id":null,"html_url":"https://github.com/TheLogicMaster/Dash-Callback-Conglomerate","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheLogicMaster%2FDash-Callback-Conglomerate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheLogicMaster%2FDash-Callback-Conglomerate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheLogicMaster%2FDash-Callback-Conglomerate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheLogicMaster%2FDash-Callback-Conglomerate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheLogicMaster","download_url":"https://codeload.github.com/TheLogicMaster/Dash-Callback-Conglomerate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248501700,"owners_count":21114676,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-09T06:07:41.414Z","updated_at":"2025-04-12T00:34:12.420Z","avatar_url":"https://github.com/TheLogicMaster.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About\nThis is a Plotly Dash add-on for enabling more freedom with callback handling, enabling sharing inputs, outputs, and\nonly returning some of the outputs registered for a callback. There are two ways to use this add-on. One method is\nseamless integration where the dash callback function is hijacked and replaced with a call to this modules callback\nfunction, and the other method is directly calling the function with the decorators.\n\n# Installation\n```\npip install dash-callback-conglomerate\n```\n\n# Basic Usage\n```python\nimport dash\nfrom dash_callback_conglomerate import Router\nfrom dash.dependencies import Input, Output\n\napp = dash.Dash(__name__)\nrouter = Router(app, True)\n\napp.layout = ...\n\n@app.callback(Output('component', 'property'),\n              Input('component', 'property'))\ndef callback(value):\n    ...\n    return 'value'\n\nrouter.register_callbacks()\n\nif __name__ == '__main__':\n    app.run_server(debug=True)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthelogicmaster%2Fdash-callback-conglomerate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthelogicmaster%2Fdash-callback-conglomerate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthelogicmaster%2Fdash-callback-conglomerate/lists"}