async_gui
async_gui copied to clipboard
Easy threading and multiprocessing for GUI applications
I think this is a simpler way to import engine, but I am not sure if this is ok for you :)
Would we able to get a pypi update with the kivy version?
Hi guys your lib in https://pypi.org/project/async_gui/ is not the latest version, Kivy is not include
For python2.7 support we will need to use a compatibility layer. http://trollius.readthedocs.io/using.html trollius uses the same api as asyncio. The work involves mainly implementing the AbstractEventLoop https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.AbstractEventLoop
Consider the following: ``` def bad(): worse() def worse(): raise RuntimeError("Bad Day") ``` Currently, if this code gets executed in a Task, we'll lose the traceback, only the last line...