def __getattr__(self, name: str) -> Callable[..., Awaitable[str]]: try: return self[name] except KeyError as e: raise AttributeError from e