Is there the concept of collections of Models in Python 3.
For example, if I have something like
class Game(object):
id = ''
status = Status()
home = Team()
away = Team()
How can I then have a collection of "Game"s ?
Something that I could then append another "Game" to, etc.