from dash import Dash, callback, Input, Outputapp = Dash(__name__)# Assume you have input and output ids like 'upload_xxxx' and 'upload_table_xxxx'input_ids = [f'upload_{random_string}'for random_string in random_strings]output_ids = [f'upload_table_{random_string}'for random_string in random_strings]@app.callback( [Output(output_id, 'data') for output_id in output_ids], [Input(input_id, 'data') for input_id in input_ids])def update_tables(*args):# Your callback logic herepassif__name__=='__main__': app.run_server(debug=True)