Skip to content

Instantly share code, notes, and snippets.

View sri's full-sized avatar

Sriram Thaiyar sri

  • Bay Area, CA
View GitHub Profile
@sri
sri / dataclass_helper.py
Last active October 1, 2022 13:31
Parse JSON into objects
from dataclasses import fields
def init_from_json(cls, json):
return cls(**{f.name: json.get(f.name) for f in fields(cls)})