You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sending HTTP Request should happen concurrently with multiple threads using asyncio to save time when dispatching requests for hundreds or thousands of URLs. The distribution and amount of threads should be decided by the runtime and not calculated manually ahead.
Use asyncio when you can, threading when you must.
Migration from requests to aiohttp finished. But using asyncio.gather(...) is not working like expected.
Requests do not get sent concurrently, instead they're sent sequentially.
Something is not right... 😞
Overview
Sending HTTP Request should happen concurrently with multiple threads using asyncio to save time when dispatching requests for hundreds or thousands of URLs. The distribution and amount of threads should be decided by the runtime and not calculated manually ahead.
Links
The text was updated successfully, but these errors were encountered: