DEV Community

Discussion on: A Beginner's Guide to Multithreading and Multiprocessing in Python - Part 1

Collapse
 
waylonwalker profile image
Waylon Walker

I like the map syntax, I havent used that before! Seems to make sense to me now. The standard library threading module always confused be before.

I've been using background.py for a few years and really like its simplicity.

Collapse
 
mojemoron profile image
Micheal Ojemoron • Edited

Yes, I love the concurrent module than the old threading module. The methods are straight forward and easy to understand. I have not tried background.py. I will have a look at it this week. Thanks for your feedback.