def async_zip(keys: Iterable[str], coros: Iterable[Awaitable[T]]) -> Dict[str, T]: return await async_dict(dict(zip(keys, coros)))