Skip to main content

Asynchronous mainloop implementation for tkinter

Project description

Asynchronous Tkinter Mainloop

Python tests Documentation Coverage Status Maintainability
PyPI Supported Python versions

Implementation of asynchronous mainloop for tkinter, the use of which allows using async handler functions. It is intended to be as simple to use as possible. No fancy unusual syntax or constructions - just use an alternative function instead of root.mainloop() and wrap asynchronous handlers into a helper function.

Note
Please, fill free to report bugs, add pull requests or share your thoughts / ask questions, etc. about the module.

Based on ideas from:

Installation

Install the package with the following command:

pip install async-tkinter-loop

or

pip install async-tkinter-loop[examples]
  • [examples] part is needed to install optional dependencies (such as httpx and pillow) to run some of the examples. If you're not going to run examples, remove the [examples] part from the command
  • Use pip3 instead of pip on Linux systems to install the package for python3 (not python2)
  • Probably you'll want to create a virtual environment for experiments with this library, but this is optional.
  • If you want to try examples, download the entire repository as an archive (green "code" button on the GitHub page → "Download ZIP"), unpack, run any example (of course, you need to install optional dependencies)

Some examples

Basic example:

import asyncio
import tkinter as tk

from async_tkinter_loop import async_handler, async_mainloop


async def counter():
    i = 0
    while True:
        i += 1
        label.config(text=str(i))
        await asyncio.sleep(1.0)


root = tk.Tk()

label = tk.Label(root)
label.pack()

tk.Button(root, text="Start", command=async_handler(counter)).pack()

async_mainloop(root)

Also, async_handler function can be used as a decorator (but it makes a decorated function syncroneous):

import asyncio
import tkinter as tk

from async_tkinter_loop import async_handler, async_mainloop


@async_handler
async def counter():
    i = 0
    while True:
        i += 1
        label.config(text=str(i))
        await asyncio.sleep(1.0)


root = tk.Tk()

label = tk.Label(root)
label.pack()

tk.Button(root, text="Start", command=counter).pack()

async_mainloop(root)

A more practical example, downloading an image from the Internet with httpx (you can use aiohttp as well) and displaying it in the Tkinter window:

import tkinter as tk
from io import BytesIO

import httpx
from PIL import Image, ImageTk

from async_tkinter_loop import async_handler, async_mainloop


async def load_image(url):
    button.config(state=tk.DISABLED)
    label.config(text="Loading...", image="")

    async with httpx.AsyncClient() as client:
        response = await client.get(url, follow_redirects=True)
        if response.status_code != 200:
            label.config(text=f"HTTP error {response.status_code}")
        else:
            content = response.content
            pil_image = Image.open(BytesIO(content))
            image = ImageTk.PhotoImage(pil_image)
            label.image = image
            label.config(image=image, text="")

        button.config(state=tk.NORMAL)


url = "https://picsum.photos/800/640"

root = tk.Tk()
root.geometry("800x640")

button = tk.Button(root, text="Load an image", command=async_handler(load_image, url))
button.pack()

label = tk.Label(root)
label.pack(expand=1, fill=tk.BOTH)

async_mainloop(root)

More examples see in the examples directory.

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

async_tkinter_loop-0.10.4.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

async_tkinter_loop-0.10.4-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file async_tkinter_loop-0.10.4.tar.gz.

File metadata

  • Download URL: async_tkinter_loop-0.10.4.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for async_tkinter_loop-0.10.4.tar.gz
Algorithm Hash digest
SHA256 cb88033975e4e33d6001055e07efe03b389ae127c8089897578ee975a110469e
MD5 036ca921e361f0828b9f85d737de7e19
BLAKE2b-256 011abb49f6d7f63a294a1a3f0cd5531a9fb9f5512400c427f9fd8a293818dc97

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tkinter_loop-0.10.4.tar.gz:

Publisher: pypi-deploy.yml on insolor/async-tkinter-loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file async_tkinter_loop-0.10.4-py3-none-any.whl.

File metadata

File hashes

Hashes for async_tkinter_loop-0.10.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7d5e0c5f98c54fa4c74436148a7bf6707d647d3022ec402c8d452d32a524c414
MD5 23f207bb1d7525e234cee24d07f8cbd6
BLAKE2b-256 ba6769c69861ef8467d5df2f0763781f253dffae0877b5f2f704392832b10e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for async_tkinter_loop-0.10.4-py3-none-any.whl:

Publisher: pypi-deploy.yml on insolor/async-tkinter-loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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