Skip to main content

Simple library that allows interaction between Tkinter and asyncio event loop running in a seperate thread.

Project description

Tkinter-Async-Execute is a small library, that provides a way to run an asyncio event loop alongside Tkinter in a separate thread.

It provides a way to execute methods of tkinter widgets from inside async functions and ability to call async functions from functions (commands / events) running in tkinter’s thread. The former can be called from any thread (or async function) and the latter only from functions (commands / events) in tkinter’s thread.

To show progress of an async function, submitted from tkinter, an async execution window widget is available, which will display any text printed with the print() function (or any stdout write requests).

Installation

pip install tkinter-async-execute

Documentation

All documentation is available on https://tkinter-async-execute.readthedocs.io/en/latest/.

Example

from tkinter import ttk
import tkinter as tk
import asyncio

import tk_async_execute as tae


async def async_function():
    # Call tkinter widget methods.
    print("Disabling button")
    tae.tk_execute(bnt.config, state="disabled")  # Thread safe exection
    await asyncio.sleep(5)
    print("Enabling button")
    tae.tk_execute(bnt.config, state="normal")
    await asyncio.sleep(2)

    # Change tkinter text
    print("Renaming button")
    tae.tk_execute(bnt.config, text="Example 2")
    await asyncio.sleep(2)


def button_clicked():
    # Call async function
    tae.async_execute(async_function(), wait=True, visible=True, pop_up=True, callback=None, master=root)

    # Close application
    root.quit()


if __name__ == "__main__":
    root = tk.Tk()
    bnt = ttk.Button(root, text="Click me", command=button_clicked, width=20)
    bnt.pack()

    tae.start()  # Starts the asyncio event loop in a different thread.
    root.mainloop()  # Main Tkinter loop
    tae.stop()  # Stops the event loop and closes it.

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

tkinter-async-execute-1.0.1.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

tkinter_async_execute-1.0.1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file tkinter-async-execute-1.0.1.tar.gz.

File metadata

  • Download URL: tkinter-async-execute-1.0.1.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for tkinter-async-execute-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d0c6dc29dbb35e01bfc7bfe78e434ec71b6cdeb43fe479f101b5ec1e7aacba61
MD5 e70a78b5f6347fee5fdf71f7d897e343
BLAKE2b-256 63c12ab0e919146f24d9ffbd7878de1501181330bdc825f3c4fd05da2b0501bf

See more details on using hashes here.

File details

Details for the file tkinter_async_execute-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for tkinter_async_execute-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d95bd44f9cbaeb218e3ccf2b4ac7f9ee7df9367505d34e6022804fa95f2e8ea1
MD5 5c172d46d7e59ebed6499e3771935aba
BLAKE2b-256 56a3dffc68dd3d65350f5f9d4748f75e414046322189ee2688c294a1b4090ff6

See more details on using hashes here.

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