Python library for creating elegant terminal UIs with colors and input
Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities.
blessed$ python3 -c "from blessed import Terminal; t = Terminal(); print(t.bold_red('Hello World'))"$ python3 -c "from blessed import Terminal; t = Terminal(); print(t.move(5, 10) + t.green('Positioned text'))"$ python3 -c "from blessed import Terminal; t = Terminal(); print('Press any key:'); print(repr(t.inkey()))"