I have around 10 QAction (this number will vary in runtime) in a toolbar, which all will do same thing, but using different parameters. I am thinking to add parameter as an
How to pass arguments to callback functions in PyQt
You can use functools.partial from standart Python library. Example with QAction:
QAction
some_action.triggered.connect(functools.partial(some_callback, param1, param2))