Skip to main content

TkEasyGUI is simple GUI Library for Python3 with Tkinter

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.

This project adopts the lenient MIT license. This license will not change in the future. Let's enjoy creating GUI programs.

Platform

  • Windows / macOS / Linux (tkinter required)

Install

Install from pypi

python -m pip install TkEasyGUI

Install from GitHub Repository

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

memo

  • version.0.2.24 : changed package name tkeasygui to TkEasyGUI. If you are using an older version and are unable to import packages successfully, please execute import tkeasygui as eg; print(eg.__file__) using the old package name to check the package path. Then, after deleting the old package name, re-execute the installation command mentioned above.

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

We have prepared a selection of samples to demonstrate simple usage. Please check them out.

Documents

Below is a detailed list of classes and methods.

About the relationship with PySimpleGUI

Fundamentally, it is compatible with PySimpleGUI. Programs can be written using the same event model. It should be noted that while it was developed with reference to PySimpleGUI, it has been reimplemented from scratch. Many unique features have been expanded. The basic Elements have been given the same names. However, the names of some properties are different.

We are not considering full compatibility with PySimpleGUI.

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

Uploaded Source

Built Distribution

TkEasyGUI-0.2.27-py3-none-any.whl (21.9 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