"htop" gui style with python, how?

I am interested in creating text-based graphical interfaces that look like a terminal but have features like selecting strings and doing things.

You know something like htop and atop, ex:

atop

htop

Any resource on this?

+6
python user-interface text
source share
2 answers

You need Uwrid , the console user interface library for Python.

Documentation is available on the website.

There is also Curses , which is located in the Python standard library.

+9
source share
0
source share

All Articles