Giter Site home page Giter Site logo

niklasvonm / pydantic-modelgen Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 0.0 315 KB

Create Pydantic BaseModels from JSON Schema at runtime.

Home Page: https://niklasvonm.github.io/pydantic-modelgen/

License: MIT License

Python 100.00%
json-schema pydantic pydantic-v2

pydantic-modelgen's Introduction

pydantic-modelgen

Create Pydantic BaseModels from JSON Schema at runtime.

Python Version Pydantic v2 License: MIT Mypy Ruff Tests Security

See documentation.

Usage

from pydanticmodelgen import generate_basemodel

json_schema = {
    "title": "Person Information",
    "type": "object",
    "properties": {
        "name": {"type": "string"},
        "age": {"type": "integer", "minimum": 0},
        "gender": {"enum": ["male", "female", "other"]}
    }
}
model = generate_basemodel(json_schema, validate_schema=True)
print(model)
# <class 'pydanticmodelgen.generate_model.Person Information'>
print(model.model_fields)
# {'name': FieldInfo(annotation=str, required=False, default=None), 'age': FieldInfo(annotation=int, required=False, default=None, metadata=[Ge(ge=0)]), 'gender': FieldInfo(annotation=genderEnum, required=False, default=None)}
instance = model(**{"name": "John Doe", "age": 30, "gender": "male"})
print(instance)
# name='John Doe' age=30 gender='male'

Motivation

The motivation for this project is to create dynamic Swagger API documentations for FastAPI apps, which rely on Pydantic, from JSON Schema. This is useful when the application logic does not depend on the exact schema of the JSON, but the consumers of the REST API do. For example, this may be the case if the JSON is populated via an LLM.

If data validation is your only concern, python-jsonschema is recommended.

Demo FastAPI App
import uvicorn
from fastapi import FastAPI
from pydanticmodelgen import generate_basemodel

app = FastAPI(title="Pydantic Modelgen Demo")

json_schema = {
    "title": "Person Information",
    "type": "object",
    "properties": {
        "name": {"type": "string"},
        "age": {"type": "integer", "minimum": 0},
        "gender": {"enum": ["male", "female", "other"]},
    },
}

Model = generate_basemodel(json_schema)

@app.get("/", response_model=Model)
async def root():
    return Model(name="Alice", age=30)

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8000)

While running this FastAPI app, the following documentation can be accessed under localhost:8000/docs:

Swagger API Documentation

pydantic-modelgen's People

Contributors

niklasvonm avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

pydantic-modelgen's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.