Skip to content

Instantly share code, notes, and snippets.

View mcleantom's full-sized avatar

Tom McLean mcleantom

View GitHub Profile
@mcleantom
mcleantom / app.py
Created November 20, 2023 21:14
Pydantic Example
from __future__ import annotations
from pydantic import BaseModel, FilePath
import logging
from loguru import logger
import abc
from typing import Literal, Union
from pathlib import Path
import json