Skip to content

Instantly share code, notes, and snippets.

@ashwinvis
Last active February 2, 2018 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashwinvis/3c036dd1d38947479e35241aec4759ba to your computer and use it in GitHub Desktop.
Save ashwinvis/3c036dd1d38947479e35241aec4759ba to your computer and use it in GitHub Desktop.
import curses
import time
stdscr = curses.initscr()
curses.curs_set(1) # visible
time.sleep(2)
curses.curs_set(0) # invisible
time.sleep(2)
curses.curs_set(1) # visible
time.sleep(2)
curses.endwin()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment