I want to display a long list of entries in Python using Tkinter. Suppose I have 1M entries. I cannot create 1M labels. They should be created only when you scroll to them. I do not want to spend much time on developing my own widgets.
(In Java/Swing, you can use Tables and TableModel, which contains a callback function that requests exactly the content of the cells that are visible)