Populating Dash Inputs with new values

Hi Everyone,

 I am working on a Dahs project in Python in which I need to populate all values of the input components in my application with new values. My approach was to create a callback that has as outputs the values for these components. It works but is slow. I wonder if there is a proper way to do this or if you have any suggestions to improve performance. Any help is very much appreciated!

 Thank you!

It really depends on your app. This sounds like you could benefit from pattern matching callbacks.

Thank you!