Skip to content

Repository files navigation

implicitdict

This library primarily provides the ImplicitDict base class which enables the inheriting class to implicitly be treated like a dict with entries corresponding to the fields of the inheriting class. Simple example:

classMyData(ImplicitDict):
foo: strbar: int=0baz: Optional[float]
data: MyData=ImplicitDict.parse({'foo': 'asdf', 'bar': 1}, MyData)
assertjson.dumps(data) =='{"foo": "asdf", "bar": 1}'

See class documentation for ImplicitDict and test_normal_usage.py for more information.

About

Provides the ImplicitDict base class which enables the inheriting class to implicitly be treated like a dict with entries corresponding to the fields of the inheriting class.

Resources

Contributing

Stars

0 stars

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages