--- id: imgui version: "2.0.0" license: BSD license_treatment: permissive maintenance: aging --- # imgui — Cython-based Python bindings for dear imgui License: permissive · Maintenance: aging · Downloads: 110.3K/mo ## What it is and what it does imgui is a Python wrapper around the dear imgui C++ library, a lightweight immediate-mode GUI toolkit designed for interactive applications, games, and tools. It provides bindings to imgui's core widgets and rendering pipeline, allowing developers to build responsive, frame-based UIs without the overhead of traditional retained-mode GUI frameworks. The package ships as pre-compiled wheels for Windows, macOS, and Linux across multiple Python versions (3.6–3.11), eliminating compilation in most cases. The library is intended for applications that need fast, iterative UI rendering—particularly games, visualization tools, and real-time editors. It requires a rendering backend (pygame, GLFW3, SDL2, Cocos2d, or pyglet) to display output. The project supports the majority of DearImGui 1.82 functionality, though some low-level APIs and complex widgets remain unmapped. With no runtime dependencies and permissive BSD licensing, it integrates easily into existing projects. Use it for: - Building debug overlays and in-game menus for games or interactive applications. - Creating lightweight data visualization and monitoring dashboards with real-time updates. - Rapid prototyping of tool UIs for graphics, audio, or scientific applications. - Implementing immediate-mode UI for 3D editors or simulation software. - Adding configuration and parameter-tuning interfaces to command-line or headless tools. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Python bindings for the dear imgui C++ library, providing an immediate-mode graphical user interface toolkit for building lightweight, interactive GUIs. Yes, if you need a lightweight, immediate-mode GUI for games, tools, or real-time applications and are willing to pair it with a rendering backend. The pre-built wheels make installation straightforward on common platforms. However, the aging maintenance status (last release 2023-04-19) means you should verify that the feature set and bug fixes meet your needs before committing to a production project. No known security vulnerabilities. ## Install pip install imgui uv add imgui poetry add imgui ## Installing imgui Before you install: Medium install friction due to compiled wheels; pre-built binaries available for major platforms and Python versions (3.6–3.11), but compilation from source may be required in niche environments. Last release was in April 2023; repository remains active but maintenance is aging. License in practice: BSD license is permissive, allowing commercial and private use with minimal restrictions; no copyleft obligations. Quickstart: pip install imgui import imgui import imgui.core # In your render loop: imgui.new_frame() if imgui.begin_window("Example"): imgui.text("Hello, ImGui!") imgui.end() imgui.end_frame() Requires a rendering backend integration (pygame, GLFW3, SDL2, Cocos2d, or pyglet) to display windows; install with extras like `pip install imgui[pygame]` for a specific backend. Verify before relying: - Whether the majority of core DearImGui 1.82 widgets mentioned in the description are fully functional and production-ready. - Current state of missing low-level API elements and complex widgets (e.g., plots) and whether they are actively being added. - Compatibility and testing status with PyPy implementations beyond the stated support since release 2.0. ## Package facts - License: BSD (permissive) - Python support: unspecified - Install friction: medium - Maintenance: aging - Downloads: 110.3K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags immediate mode gui python, dear imgui python bindings, lightweight ui toolkit, imgui python wrapper, interactive gui library, bloat-free ui framework, python gui rendering, gui-toolkit, game-dev, real-time-ui [View on SkillFed](https://skillfed.io/packages/imgui) · [View on PyPI](https://pypi.org/project/imgui/)