Top "Curses" questions

Curses is a library for unix-ish computers that you can use to have better and more interactive consoles, including colors.

Error no module named curses

When I try to run the following code... from telnetsrvlib import * if __name__ == '__main__': "Testing - Accept a …

python windows python-2.7 telnet curses
What is needed for curses in Python 3.4 on Windows7?

I have a running Python 2.7/3.4 installation on my Windows 7 (x64) machine. I would like to test curses on Windows. Curses …

windows python-3.x curses pdcurses
How to install curses.h header file(or the package including it)in Linux?

I want to use certain operations (like clearing the screen etc.) in C programs in Linux platform and I am …

c curses
Curses alternative for windows

Is there any alternative of the curses module for python to use in windows? I looked up in the python …

python curses
CMake can't find Curses

I am trying to compile the openlase library from www.marcansoft.com and have been running into problems with CMake. …

linux cmake ncurses curses
Canonical vs. non-canonical terminal input

I am studying for an exam and I am confused as to how canonical vs. non-canonical input/output works in …

unix input curses
ImportError: No module named '_curses' when trying to import blessings

I am trying to run this: from blessings import Terminal t = Terminal() print (t.bold('Hi there!')) print (t.…

python windows module curses python-curses
How to create a menu and submenus in Python curses?

AFAIK, there is no curses menu extension available in Python yet so you have to roll your own solution. I …

python python-2.7 curses
How to use terminal color palette with curses

I can't get the terminal color palette to work with curses. import curses def main(stdscr): curses.use_default_colors() …

python colors curses
How to scroll text in Python/Curses subwindow?

In my Python script which uses Curses, I have a subwin to which some text is assigned. Because the text …

python scroll curses