Skip to content

Instantly share code, notes, and snippets.

@CrimsonScythe
Created August 14, 2022 13:47
Show Gist options
  • Save CrimsonScythe/7501a1901b4854d3d1b60d8200f1bbe4 to your computer and use it in GitHub Desktop.
Save CrimsonScythe/7501a1901b4854d3d1b60d8200f1bbe4 to your computer and use it in GitHub Desktop.
from pydantic import BaseModel
class Book(BaseModel):
name: str
author: str
class Config:
orm_mode = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment