←back to thread

320 points willm | 2 comments | | HN request time: 0.405s | source
Show context
silverwind ◴[] No.45106541[source]
I think Python needs a good `fetch`-like async http client in the stdlib.
replies(1): >>45106560 #
1. rcarmo ◴[] No.45106560[source]
I personally recommend aiohttp. Setting up a ClientSession and letting it do its thing is quite nice.
replies(1): >>45108504 #
2. 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.