0

May I know is there a such module in python?

Basically I need print database table records to terminal in python supporting page-up and page-down key press.

Also I need a highlighted title bar on top of the screen looks like "top" output, and the output will auto scale to fit the terminal window resize.

Thanks!

user478514
  • 3,859
  • 10
  • 33
  • 42

2 Answers2

3

Take a look at this, might be helpful:

Also, take a look at these question:

and a link from it:

Community
  • 1
  • 1
icyrock.com
  • 27,952
  • 4
  • 66
  • 85
0

Python's curses module is a wrapper around GNU's ncurses C library, which is what top uses.

nmichaels
  • 49,466
  • 12
  • 107
  • 135