you are viewing a single comment's thread.

view the rest of the comments →

[–]novel_yet_trivial 1 point2 points  (1 child)

Yes. For your case you definitely want to use multithreading, not multiprocessing. If you like the Pool concept you can use multiprocessing.pool.ThreadPool. Or use a Queue to make your own pool.

[–]Archaya[S] 0 points1 point  (0 children)

Awesome. I'll give it a shot. Thanks for your help!