Skip to content

Instantly share code, notes, and snippets.

@microft
Last active March 31, 2024 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save microft/d36bf05c49151e8b59e869a4a885a026 to your computer and use it in GitHub Desktop.
Save microft/d36bf05c49151e8b59e869a4a885a026 to your computer and use it in GitHub Desktop.
pydantic BaseSettings example
from pydantic import Field
from pydantic import BaseSettings
class Config(BaseSettings):
x: int
y: str | None
z: str = 'Xpto'
_config = Config()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment