Updated Using Asynchronous programming inside a Kivy application (markdown)

timothy eichler 2016-12-18 21:06:03 +01:00
parent 1605a04f96
commit 4ff7f97374
1 changed files with 2 additions and 0 deletions

@ -7,6 +7,8 @@ Using an async style of programming is much easier to reason about than using th
The async landscape for kivy is a bit lacking. The best option has been explained [here.](https://github.com/kivy/kivy/issues/4799#event-897592498) Compare [Working with threads in kivy](https://github.com/kivy/kivy/wiki/Working-with-Python-threads-inside-a-Kivy-application). While the complexity of the thread looks manageable, Sooner or later you will be bitten with buggy non deterministic behaviour and or deadlocks.
** Warning: When using the async model with kivy, certain errors will crash kivy without a traceback. This is rather annoying and means you have to step through the code in a debugger (the exception will be raised in this case).
## Usage
```python