Hello, I would need some advice on how I could use multiprocessing in my use case.
Basically, my program grabs a list of keywords from an excel file. Then I want to start 50 tasks in parallel( multiprocessing) to process each of these keywords).
Then each process will save up the result in a csv file independantly. So like once the process finished, it willl save it.
This caused issues when I was using multiprocessing, because sometimes they would try to write the file simultaneously and it breaks the data.
Notice in the picture how after 800 successful data insertion, it just broke for no reason.
Thank you for any help
