Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pkutaj/26dbf2d12434f9c9597fe9053c6ce9ee to your computer and use it in GitHub Desktop.
Save pkutaj/26dbf2d12434f9c9597fe9053c6ce9ee to your computer and use it in GitHub Desktop.
2023-03-08-How-to-Create-a-Simple-Menu-in-Python-Scripts2.py
# schema_patcher.py
from menu_maker import *
menu_items = ["Delete", "Patch", "List"]
menu = Terminal_Menu(menu_items)
menu.print_menu()
selection = menu.select_menu_item()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment