async_pool.py

PythonMaster

Explorer

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python
Beginner10
Intermediate10
Advanced10
Expert5
Master5
async_pool.py
retry_decorator.py
singleton_meta.py
context_manager.py
dataclass_config.py
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
async_pool.py
Click to focus
1
2
3
4
5
6
7
8
9
10
11
class AsyncPool:
   def __init__(self, size: int):
       self.sem = asyncio.Semaphore(size)
   async def run(self, coro):
       async with self.sem:
           return await coro
pool = AsyncPool(5)
tasks = [pool.run(fetch(url)) for url in urls]
results = await asyncio.gather(*tasks)
0WPM0%0:000/287(0%)|Ln 1, Col 1
UTF-8Python

Related Exercises