Dear PyGui

Dear PyGui is a Python GUI framework. It is easy to use.

How to Install

pip3 install dearpygui

First Create apps!

  1. Open Visual Studio code
  2. Write the below code
# import some libraries
from dearpygui import core, simple
with simple.window("Example"):
    core.add_button("Click here")
# to saart window
core.start_dearpygui()

3. now save the file as main.py

and run the code

python3 main.py

Output: