Metadata-Version: 2.1
Name: tkeasygui
Version: 0.1.0
Summary: Easy and Simple GUI Library
Author-email: kujirahand <web@kujirahand.com>
Project-URL: Homepage, https://github.com/kujirahand/tkeasygui-pythont
Project-URL: Issues, https://github.com/kujirahand/tkeasygui-python/issues
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# tkeasygui

Easy and Simple GUI Library for Python.
Take it Easy to develop GUI apps.

The usability of the GUI library PySimpleGUI allows for the easy creation of applications.

## Install

```sh
python -m pip install git+https://github.com/kujirahand/tkeasygui-python
```

## How to use

To create a simple window with only labels and buttons, you would write as follows:

```py
import tkeasygui as eg

# Create window
layout = [
    [eg.Text("Hello, World!")],
    [eg.Button("OK")]
]
window = eg.Window("Hello", layout=layout)

# Event loop
while True:
    # get window event
    event, values = window.read()
    # close button
    if event == eg.WINDOW_CLOSED:
        break
    # check OK Button
    if event == "OK":
        eg.popup("Pushed OK Button")
        break
window.close()
```

## For Developper

```sh
mypy .
```
