async-tkinter-loop
async-tkinter-loop copied to clipboard
Asynchronous mainloop implementation for tkinter. Makes it possible to use async functions as event handlers and widget commands.
I tried to set `async-tkinter-loop` for my project on `customtkinter`. I haven't added any async method yet. The project runs in VS Code while debugging, everything seems to work, but...
In the following code (pure tkinter) counter continues to work while messagebox dialog is shown: ```python import tkinter as tk from tkinter import messagebox root = tk.Tk() def loop(): counter.set(counter.get()...
- [x] added basic documentation using mkdocs and github pages - [ ] examples - [ ] mixins + CustomTkinter support - [ ] multilingual documentation
TODO: - [x] migrate the project itself - [ ] fix documentation (search md files with poetry mentioned)