Hacker News
new
past
comments
ask
show
jobs
points
by
bigstrat2003
1 hours ago
|
comments
by
seabrookmx
1 hours ago
|
[-]
Say I need the results from two expensive REST API calls, so I want to run them concurrently. Managing a thread pool you find a _better_ experience than
one, two = await asyncio.gather(callOne(), callTwo())
?
reply