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,599
  • 9
  • 31
  • 40

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,006
  • 4
  • 63
  • 82
0

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

nmichaels
  • 47,648
  • 12
  • 99
  • 131