Skip to content

taxmachinebe/json-dataclass-io-hooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON encoder/decoder hooks for Python dataclasses

This project contains custom hooks that can be used with Python's json package. These hooks can be to produce JSON from and to predefined existing dataclasses.

Source: https://stackoverflow.com/questions/53376099/python-dataclass-from-dict#answer-53505530

Usage

json_str = json.dumps(dataclass_object, default=dataclass_object_dump)

dataclass_object = json.loads(json_str, object_hook=dataclass_object_load)

About

Hooks for producing JSON from and to existing, predefined Python dataclasses

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages