Skip to content

Instantly share code, notes, and snippets.

@JonathanLoscalzo
Created March 15, 2024 19:08
Show Gist options
  • Save JonathanLoscalzo/96eaff095fce2e44de360a95078b1d27 to your computer and use it in GitHub Desktop.
Save JonathanLoscalzo/96eaff095fce2e44de360a95078b1d27 to your computer and use it in GitHub Desktop.
DictObj alternative for python
# Similar to TypedDict but without typings
# allow access keys as fields
class DictObj:
def __init__(self, **kwargs):
self._update_internal_dict(dict(kwargs))
def _update_internal_dict(self, data: dict):
self.__dict__.update(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment