What is TypedDict?
Type hints and typing
Audio flashcard · 0:13Nortren·
What is TypedDict?
0:13
TypedDict lets you describe a dictionary with a fixed set of string keys and specific value types for each. It is useful for typing JSON-like data without converting to a class. Type checkers verify that you only access declared keys with the correct value types.
peps.python.org