Skip to content

Instantly share code, notes, and snippets.

View jifunks's full-sized avatar

Jake Funke jifunks

View GitHub Profile
@claymcleod
claymcleod / pycurses.py
Last active June 27, 2024 00:17
Python curses example
import sys,os
import curses
def draw_menu(stdscr):
k = 0
cursor_x = 0
cursor_y = 0
# Clear and refresh the screen for a blank canvas
stdscr.clear()