Is my method for managing individual event driven tasks in python asyncio overkill? (stackoverflow.com)stack
20 points by iamthebull in stackoverflow.com · 2d ago · stack
In my app I have resources that will create tasks that: are created by asynchronous events are independent from each other (i.e. cancellation of one task should not affect the others) have a finite life span shorter than the life span of the resource should have errors handled i…