mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
14 lines
330 B
Python
14 lines
330 B
Python
import asyncio
|
|
from contextlib import asynccontextmanager
|
|
from typing import AsyncIterator
|
|
|
|
|
|
class Limiter:
|
|
def __init__(self, limit: int = 10):
|
|
self._semaphore = asyncio.Semaphore(limit)
|
|
|
|
@asynccontextmanager
|
|
async def limit(self) -> AsyncIterator[None]:
|
|
async with self._semaphore:
|
|
yield
|