Skip to content

Instantly share code, notes, and snippets.

View cristobaltapia's full-sized avatar

Cristóbal Tapia cristobaltapia

View GitHub Profile
@76creates
76creates / python_curses_overlay_windows.py
Last active June 16, 2024 06:21
Python curses overlaying windows
'''
If you ever wondered how overlaying works in python curses lib so did I! This is how it works:
'''
import curses
def start(stdscr):
# sets up no delay so keys dont overload CPU
stdscr.nodelay(False)
# no blinking cursor