1

I have two things I need this for, these should explain what I mean:

  1. To have a 'shell popup' of sorts, like man does, that can be removed when done
  2. To have a blinking ellipsis (...) for visual effect

Is there any standard Python way to do this? Could I 'unprint' the last line and reprint it?

tkbx
  • 15,602
  • 32
  • 87
  • 122

2 Answers2

3

Look at curses module.

See also: curses-like library for cross-platform console app in python

Community
  • 1
  • 1
warvariuc
  • 57,116
  • 41
  • 173
  • 227
2

I have no experience with it, but you may want to look at Python's interface to the curses library: http://docs.python.org/library/curses.html

highBandWidth
  • 16,751
  • 20
  • 84
  • 131
lindelof
  • 34,556
  • 31
  • 99
  • 140