AsyncUI
Library for asynchronous GUI programming. Runs async event loop in a separate thread.
Installation
pip install asyncui
Usage
For complete examples see demo folder.
wxpython
import asyncio
import asyncui
import wx
app = wx.App()
frame = wx.Frame(None, title="Async wxPython")
frame.Show()
with asyncui.run_loop():
app.MainLoop()
Tkinter Example
import asyncio
import asyncui
import tkinter as tk
root = tk.Tk()
root.title("Async Tkinter")
with asyncui.run_loop():
root.mainloop()
Release files for asyncui 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| asyncui-1.0.0.tar.gz | 4.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| asyncui-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:9.6 kB
Release files / asyncui-1.0.0.tar.gz
| Download URL | asyncui-1.0.0.tar.gz |
|---|---|
| Size | 4.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
db88d0ecede453d7dbf09db735b6ad38dd749cd59aea2cd8ecbaec1bfd95288e
|
|
BLAKE2b-256 checksum How to use checksums |
d085bac86119ff4bc95a48891d750957e00f60b7fc541d5901322881d9de8453
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.23
|
Release files / asyncui-1.0.0-py3-none-any.whl
| Download URL | asyncui-1.0.0-py3-none-any.whl |
|---|---|
| Size | 4.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fbb40b1dc2bde49e03a6fcac94c8f89ffc694ccfe97f2819866ee85a13887ad8
|
|
BLAKE2b-256 checksum How to use checksums |
c5325a3f13fc8f45e83aea0ce638c92a4643cf2ae04f413f596f2515dd3dc662
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.9.23
|