--- id: easygui version: "0.98.3" license: BSD license_treatment: permissive maintenance: dormant --- # easygui — EasyGUI is a module for very simple, very easy GUI programming in Python. EasyGUI is different from other GUI generators in that EasyGUI is NOT event-driven. Instead, all GUI interactions are invoked by simple function calls. License: permissive · Maintenance: dormant · Downloads: 7.8M/mo ## What it is and what it does EasyGUI is a thin wrapper around Tkinter that lets you create simple GUI dialogs without writing event handlers. Instead of building a GUI application with callbacks and event loops, you call functions like msgbox(), ynbox(), and buttonbox() to show dialogs and get user input synchronously. It's designed for scripts and small tools that need a quick graphical interface without the overhead of learning a full GUI framework. The package runs on Python 2 and 3 and has no dependencies beyond Tkinter, which ships with most Python installations. It supports basic dialog types—message boxes, yes/no prompts, button selections, text input, and file open/save dialogs—and allows customization of button labels and keyboard hotkeys. The description notes the project is in maintenance mode with limited recent activity, though the repository remains available for contributions. Use it for: - Quick scripts that need user confirmation or input without building a full GUI application. - Educational projects where students want to add simple dialogs to Python programs without learning event-driven frameworks. - System utilities and automation tools that require file selection or yes/no prompts from the command line. - Prototyping or testing GUI interactions before committing to a heavier framework like PyQt or Tkinter directly. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. EasyGUI provides simple, non-event-driven GUI dialogs for Python using Tkinter—message boxes, yes/no prompts, button selections, and file dialogs invoked by plain function calls. Yes, if you need simple synchronous dialogs for a script or educational project. The low install friction, zero runtime dependencies, and permissive license make it straightforward to add. However, the dormant maintenance status (last release 1596 days ago) means it's not actively developed; use it for lightweight, stable use cases, not for new applications requiring ongoing support or modern GUI features. ## Install pip install easygui uv add easygui poetry add easygui ## Installing easygui Before you install: Low friction: pure Python wheel with no runtime dependencies beyond Tkinter (built into Python). Maintenance is dormant—last release was 1596 days ago, though the repository remains active with a recent commit on 2024-10-22. License in practice: BSD license (permissive) is GPL-compatible and imposes minimal restrictions on use or redistribution. Quickstart: pip install easygui import easygui easygui.msgbox('Hello', 'Title') easygui.ynbox('Continue?', 'Prompt', ('Yes', 'No')) Tkinter must be installed; Linux users may need to install python-tk or python3-tk separately. Verify before relying: - Whether the dormant maintenance status and 1596-day gap since last release affects stability or compatibility with recent Python versions beyond 3.9. - Current state of IDLE IDE compatibility, which was flagged as a known issue in earlier releases. ## Package facts - License: BSD (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 7.8M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags simple python gui dialogs, tkinter message box wrapper, non-event-driven gui, python file dialog, easy gui prompts, python button box, lightweight gui library, gui-dialogs, tkinter-wrapper, educational [View on SkillFed](https://skillfed.io/packages/easygui) · [View on PyPI](https://pypi.org/project/easygui/)