Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active October 21, 2019 12:54
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 NMZivkovic/48775a6a2e6e99a42c7016860381f169 to your computer and use it in GitHub Desktop.
Save NMZivkovic/48775a6a2e6e99a42c7016860381f169 to your computer and use it in GitHub Desktop.
from typing import TypedDict
class Song(TypedDict):
artist: str
title: str
album: str
year: int
song: Song = {'artist': 'Nikola Nezit', 'title': 'Three Suns Halo', 'album': 'Triad', 'year': 2013}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment