Library for asynchronous GUI programming
Project description
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()
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
asyncui-1.0.0.tar.gz
(4.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file asyncui-1.0.0.tar.gz.
File metadata
- Download URL: asyncui-1.0.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db88d0ecede453d7dbf09db735b6ad38dd749cd59aea2cd8ecbaec1bfd95288e
|
|
| MD5 |
6fb0427286f1e614789c6704649be599
|
|
| BLAKE2b-256 |
d085bac86119ff4bc95a48891d750957e00f60b7fc541d5901322881d9de8453
|
File details
Details for the file asyncui-1.0.0-py3-none-any.whl.
File metadata
- Download URL: asyncui-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbb40b1dc2bde49e03a6fcac94c8f89ffc694ccfe97f2819866ee85a13887ad8
|
|
| MD5 |
1d2ffbbcb05dc0c1a856a48994945f1a
|
|
| BLAKE2b-256 |
c5325a3f13fc8f45e83aea0ce638c92a4643cf2ae04f413f596f2515dd3dc662
|