async_pool.py
Python•マスター
Explorer
C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python
初級10
中級10
上級10
エキスパート5
マスター5
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)
0WPM•0%•0:00•0/287(0%)|Ln 1, Col 1
UTF-8•Python