DEV Community

Discussion on: What was your win this week?

Collapse
 
winstonyallow profile image
Winston • Edited

Writing a wrapper class for a python module (which has many io bound methods). The wrapper allows us to use the module in an asynchronous way. Now we can execute the io bound methods in parallel coroutines.

The speed gain was even higher than expected. We saved roughly 75% of the time. 🎉