Aloha, I have been using Trio on a raspberry pi data acquisition/control system for a year or so. Trio gives the server side nice async threads for dealing with odd sensors, etc. The client side was built using GTK/GObject and didnt use trio. I’m having to redo the client with the TKinter UI library for irrelevant issues. I was looking into threading for the UI vs network comms and thought I’d try using trio there. I found the triotk library (https://github.com/Akuli/triotk) which is over 3y old and apparently built against very old Trio. It uses a nursery.spawn method, which does not exist in current trio.
Are there other options/examples of using trio with tk?
Thanks!