←back to thread

320 points willm | 1 comments | | HN request time: 0.202s | source
Show context
silverwind ◴[] No.45106541[source]
I think Python needs a good `fetch`-like async http client in the stdlib.
replies(1): >>45106560 #
rcarmo ◴[] No.45106560[source]
I personally recommend aiohttp. Setting up a ClientSession and letting it do its thing is quite nice.
replies(1): >>45108504 #
1. operator-name ◴[] No.45108504[source]
httpx also supports sync and async, but I remember seeing an issue in their repo about worse performance than aiohttp.