I should do multi threading in case of multiple requirement files.
We do not want multi processing because we are not CPU bounded but I/O bounded in this case, so GIL is not a problem here. And multi threading is easier than multiprocessing because data is shared between threads.
I should do multi threading in case of multiple requirement files. We do not want multi processing because we are not CPU bounded but I/O bounded in this case, so GIL is not a problem here. And multi threading is easier than multiprocessing because data is shared between threads.