jw-python/tools/python/jwutils/Bunch.py

11 lines
222 B
Python
Raw Normal View History

# -*- 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]