Skip to main content

TkEasyGUI is Easy and Simple GUI Library

Project description

TkEasyGUI

TkEasyGUI is a Python library that allows for the easy and simple creation of GUI applications. In the event model, it is compatible with the well-known GUI library PySimpleGUI.

Python's standard UI library Tkinter, is often considered to have a high barrier to entry and to be difficult to use. By using this library, you can create GUI applications easily and intuitively.

Install

Install from pypi

python -m pip install tkeasygui

Install from GitHub Repository

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:

import tkeasygui as eg

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

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

Samples

Documents

Regarding the relationship with PySimpleGUI

This was developed with reference to PySimpleGUI, but has been re-implemented from scratch. While its usage is similar to PySimpleGUI, it has been expanded with unique features.

Link

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tkeasygui-0.2.1.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

tkeasygui-0.2.1-py3-none-any.whl (15.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page