Skip to content

Instantly share code, notes, and snippets.

View scroobiustrip's full-sized avatar
🏠
Working from home

scroobiustrip

🏠
Working from home
View GitHub Profile
import time
import asyncio
from typing import Iterable, Awaitable, AsyncIterator
class AsyncLimitConcurrency:
def __init__(
self,
awaitables: Iterable[Awaitable],