# -*- coding: utf-8 -*- from typing import Any class Bunch: # export def __init__(self, **kwargs): self.__dict__.update(kwargs) def __getitem__(self, key: str) -> Any: return self.__dict__[key]