Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Iced | 20,637 | 1 | 69 | 21 hours ago | 18 | July 28, 2023 | 222 | mit | Rust | |
A cross-platform GUI library for Rust, inspired by Elm | ||||||||||
Awesome Python Applications | 14,826 | 6 days ago | 38 | Jupyter Notebook | ||||||
💿 Free software that works great, and also happens to be open-source Python. | ||||||||||
Lvgl | 12,932 | 20 hours ago | 78 | mit | C | |||||
Embedded graphics library to create beautiful UIs for any MCU, MPU and display type. It's boosted by a professional yet affordable drag and drop UI editor, called SquareLine Studio. | ||||||||||
Dearpygui | 11,159 | 38 | a day ago | 218 | October 31, 2022 | 236 | mit | C++ | ||
Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies | ||||||||||
Mach | 2,230 | 2 days ago | 132 | other | Zig | |||||
zig game engine & graphics toolkit | ||||||||||
Iplug2 | 1,644 | a day ago | 142 | other | C | |||||
C++ Audio Plug-in Framework for desktop, mobile and web | ||||||||||
Rui | 1,408 | 20 days ago | 18 | May 26, 2022 | 14 | mit | Rust | |||
Declarative Rust UI library | ||||||||||
Fltk Rs | 1,318 | 52 | 4 days ago | 353 | September 09, 2023 | 5 | mit | Rust | ||
Rust bindings for the FLTK GUI library. | ||||||||||
Gi | 1,205 | 31 | a day ago | 107 | August 24, 2023 | 177 | bsd-3-clause | Go | ||
A free and open source framework for building useful, fast, and beautiful 2D and 3D GUIs that run on macOS, Windows, Linux, iOS, and Android with a single pure Go codebase. | ||||||||||
Core2d | 816 | 25 | 16 days ago | 14 | May 05, 2022 | 3 | mit | C# | ||
A multi-platform data driven 2D diagram editor. |
Features • Installation • How To Use • Demo • Resources • Support • Tech stack • Credits • License • Gallery
Ensure you have at least Python 3.7 64bit.
pip install dearpygui
or
pip3 install dearpygui
Using Dear PyGui is as simple as the following Python script.
import dearpygui.dearpygui as dpg
def save_callback():
print("Save Clicked")
dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()
with dpg.window(label="Example Window"):
dpg.add_text("Hello world")
dpg.add_button(label="Save", callback=save_callback)
dpg.add_input_text(label="string")
dpg.add_slider_float(label="float")
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
The built-in demo shows all of Dear PyGui's functionality. Use this code to run the demo. The following impression shows a few, but not nearly all, of the available widgets and features. Since the Python code of the demo can be inspected, you can leverage the demo code to build your own apps.
If you are having issues or want to help, here are some places you can go.
Dear PyGui is built on top of Dear ImGui, including the ImPlot and imnodes extensions, and is fundamentally different than other Python GUI frameworks. Under the hood, it uses the immediate mode paradigm and your computer's GPU to facilitate extremely dynamic interfaces. In the same manner Dear ImGui provides a simple way to create tools for game developers, Dear PyGui provides a simple way for python developers to create quick and powerful GUIs for scripts. Dear PyGui is written in C/C++ resulting in highly performant Python applications. Dear PyGui is currently supported on the following platforms.
Platform | Graphics API | Newest Version |
---|---|---|
Windows 10 | DirectX 11 | |
macOS | Metal | |
Linux | OpenGL 3 | |
Raspberry Pi 4 | OpenGL ES |
Developed by Jonathan Hoffstadt, Preston Cothren and every direct or indirect contributor.
Omar Cornut for all his incredible work on Dear ImGui.
Evan Pezent for all his work on ImPlot.
Johann Muszynski for all of his work on imnodes.
Dear PyGui is licensed under the MIT License.
Continued maintenance and development are a full-time endeavor which we would like to sustain and grow. Ongoing development is financially supported by users and private sponsors. If you enjoy Dear PyGui please consider becoming a sponsor or buy us a cup of coffee.
Dear PyGui includes a plotting API built with ImPlot
Dear PyGui includes a node editor built with imnodes
Dear PyGui includes a drawing API to create custom drawings, plot, and even 2D games.