Skip to main content

Easy and Simple GUI Library

Project description

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

Install from https://pypi.org/

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 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()

Samples

Please see tests.

For Developper

mypy .

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.1.1.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

tkeasygui-0.1.1-py3-none-any.whl (7.7 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