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) Updating from older versions (less than 0.2.24) will fail. (See the solution)
How to use
To create a simple window with only labels and buttons, you would write as follows:
import TkEasyGUI as eg
# define layout
layout = [[eg.Text("Hello, World!")],
[eg.Button("Exit")]]
# create a window
with eg.Window("test", layout) as window:
# event loop
for event, values in window.event_iter():
if event == "Exit":
eg.popup("Thank you.")
break
You can describe it using an event model similar to the famous GUI library, PySimpleGUI.
import TkEasyGUI as eg
# define layout
layout = [[eg.Text("Hello, World!")],
[eg.Button("Exit")]]
# create a window
window = eg.Window("test", layout)
# event loop
while True:
event, values = window.read()
if event in ["Exit", eg.WINDOW_CLOSED]:
eg.popup("Thank you.")
break
# close window
window.close()
Samples
We have prepared a selection of samples to demonstrate simple usage. Please check them out.
Running tests/file_viewer.py
allows all samples to be easily launched.
Documents
Below is a detailed list of classes and methods.
About the relationship with PySimpleGUI
- When utilizing basic features, it is compatible with PySimpleGUI. You can write programs using the same event model as PySimpleGUI.
- The names of basic GUI components are also kept the same. However, while some property names differ, many unique features have been implemented.
- This project was developed with PySimpleGUI in mind, but has been implemented entirely from scratch. There are no licensing issues.
- We are not considering full compatibility with PySimpleGUI.
TkEasyGUI features:
- Using a
for
loop andwindow.event_iter()
enables straightforward event processing. - Custom popup dialogs, such as a color selection dialog (
eg.popup_color
), are available. - The
Image
class supports not only PNG but also JPEG formats. - Convenient event hooks and features for bulk event registration are provided - docs/custom_events.
- Methods such as Copy, Paste, and Cut are added to text boxes (Multiline/Input).
- The system's default color scheme is utilized.
Link
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for TkEasyGUI-0.2.46-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a210c6950c822f0b3ed67957139196dde1a086856dbfb8f7e6f8a342fc879af |
|
MD5 | 53286dbb76d9db87a3ccf415f695451b |
|
BLAKE2b-256 | cd853330bffc89b0e8fd926f3df53614fa676e098ecbf7c8e02acefd26ced789 |