There is a way to make a scrolling menu in python-curses? I have a list of records that I got from a query in sqlite3 and I have to show them in a box but they are more than
To make a scrollable widget that can scroll through text that is larger than a screenful you will need to use curses.newpad You can find a simple example here: https://stackoverflow.com/a/2523020/9205341 And the Python 3/Python 2 docs there.
curses.newpad