Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Naartti/177a99f53cb1c3fa2712bfad53797a2e to your computer and use it in GitHub Desktop.
Save Naartti/177a99f53cb1c3fa2712bfad53797a2e to your computer and use it in GitHub Desktop.
Typed Python typed dict with optional key
class Movie(TypedDict, total=False):
title: str
release_year: int
rating: Literal[1, 2, 3, 4, 5]
comments: list[str]
sequel: Optional[str]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment