Answer the question
In order to leave comments, you need to log in
What Python libraries can you recommend for multithreading?
I want to start right away with the goal - I need to quickly parse some data from web pages, usually these are HEAD requests, GET requests with an incomplete response (for example, the first 128 bytes of the response), as well as banal things.
Previously, I used the Threading and Queue Python modules directly for this, and they completely suited me, since I needed more or less stable work on 10-20 threads. Now I need to increase this number by 20-30 times.
What libraries can you advise or tell me in which direction it is worth digging.
Thank you.
Answer the question
In order to leave comments, you need to log in
Python 3 has out of the box asyncore and asyncio for all kinds of async. You can dig in this direction.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question