Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 229 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 229 Bytes

Pydantic jsonschema

A library to generate Pydantic Modules from JSONSCHEMA at runtime

from pydantic_jsonschema.parser import from_json_schema

MyModel = from_json_schema("path_to_file.json")

MyModel(**kwags)