Skip to content

Instantly share code, notes, and snippets.

View eder78's full-sized avatar
🎯
Focusing

Éder Luís Britto Garcia eder78

🎯
Focusing
View GitHub Profile
@claymcleod
claymcleod / pycurses.py
Last active February 24, 2025 10:20
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()