Simple loop parallelization in Python
Sometimes you are programming a loop to run over tasks that could be easily parallelized. Usual suspects include loads that wait IO like calls to third party API services. Since Python 3.2, there have been easy tool for this kind … Continue reading