Mixed Async code in Sync Python: Disappointingly Simple

from blog Jason Scheirer on the Internet on Jason Scheirer, | ↗ original
One thing I love about Python’s practical approach to type annotations and enforcement is that it’s gradual: you can rapidly code a large ball of mud and get it working, then refine it to make it safer with typing later on. Chalk this up as another good idea (possibly by accident) for Python: you can do the same with async. At work, someone...