-
Perhaps I'm wrong ... perhaps async is done via greenlet or something else ... But "requests" is really not async compliant (it lock the thread during http exchange) ... while httpx, aiohttp are a better option. |
Beta Was this translation helpful? Give feedback.
Answered by
hlohaus
Nov 19, 2024
Replies: 1 comment
-
Our utilization of requests is sporadic. The majority of providers employ either aiohttp or curl_cffi. Asynchronous functionality is only available when utilizing the AsyncClient. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
manatlan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our utilization of requests is sporadic. The majority of providers employ either aiohttp or curl_cffi. Asynchronous functionality is only available when utilizing the AsyncClient.