pydantic-generator generates the pydantic model classes.
Project description
pydantic-generator
pydantic-generator generates a pydantic schema module from a json file.
install
pydantic-generates uses ast.unparse()
and therefore only supports python 3.9+.
$ python3.9 -m pip install pydantic-generator
$ pydanticgen --help
usage: pydanticgen [-h] -i INPUT_ [-o OUTPUT]
optional arguments:
-h, --help show this help message and exit
-i INPUT_, --input_ INPUT_, --input INPUT_
-o OUTPUT, --output OUTPUT
example
$ ls
response.json
$ cat response.json
{
"menu": {
"id": "file",
"value": "File",
"popup": {
"menuitem": [
{
"value": "New",
"onclick": "CreateNewDoc()"
},
{
"value": "Open",
"onclick": "OpenDoc()"
},
{
"value": "Close",
"onclick": "CloseDoc()"
}
]
}
}
}
# this command generates Response.json
$ pydanticgen -i response.json
$ ls
response.json Response.py
$ cat Response.py
from pydantic import BaseModel
class Response(BaseModel):
class Menu(BaseModel):
id: str
value: str
class Popup(BaseModel):
class Menuitem(BaseModel):
value: str
onclick: str
menuitem: list[Menuitem]
popup: Popup
menu: Menu
(This sample can be found at https://json.org/example.html.)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for pydantic_generator-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57cace41c1db21d925bd1d704480710fa70a0905cc02797be76db29d840a5d36 |
|
MD5 | b177ae4d0c205329e803eae98b8487c0 |
|
BLAKE2b-256 | 616978eb0e3ec8e43d1187e3b024f3c749b3de3d14f4fae67517fde42563374d |