Relative Content

Tag Archive for pythonpython-requestspython-requests-html

Do multiple requests being sent at once slow each individual request down?

So I am working in a program that sends multiple (around 100) requests per second, each to a different website. The requests are sent asynchronously in around 10 different threads, so they aren’t blocking each other during execution. My question is if I were to send an extra request (in addition to those 100 requests) in a new thread, would it be slower or equal in speed to the same request being made alone (without the other 100 requests being sent)?