I am trying to develop applications for gtk3 using python. I have designed the UI using glade. I want to know if there is any way of using widget arrays, in which each widget of similar type would have the same name, but with a different index. It would help in reducing code to a great extent.
In my application, I have 10 label widgets which display different data, based on an array of data. Now I have to call the gbuilder.get_object() method every time I need to get the desired object. If I were able to use widget arrays, it would really help in reducing the code redundancy.