spacepaste

  1.  
  2. #!/usr/bin/env python3
  3. from blessings import Terminal
  4. import click
  5. import time
  6. term = Terminal()
  7. STATUS_LINES = 2
  8. def move_up():
  9. click.echo(term.move_up, nl=False)
  10. def clear():
  11. click.echo(term.clear_eol, nl=False)
  12. def update(message):
  13. # Move up and clear the status lines
  14. for i in range(STATUS_LINES):
  15. move_up()
  16. clear()
  17. # Print the message (however long it is, however many lines, shouldnt matter)
  18. click.echo(message)
  19. # Add newlines to clear the status area
  20. for i in range(STATUS_LINES):
  21. click.echo('')
  22. # Position ourself for status printing
  23. for i in range(STATUS_LINES):
  24. move_up()
  25. # Print status information
  26. for i in range(STATUS_LINES):
  27. click.echo('Status {}'.format(i))
  28. while True:
  29. time.sleep(1)
  30. update("This is a message !")
  31.