Created
April 18, 2021 11:34
-
-
Save Naartti/177a99f53cb1c3fa2712bfad53797a2e to your computer and use it in GitHub Desktop.
Typed Python typed dict with optional key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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