| 1 | # you don't need to copy-paste this line, it's only useful when using the data |
|---|
| 2 | # as "from section6 import *" |
|---|
| 3 | from model import * |
|---|
| 4 | |
|---|
| 5 | scifi = Genre(name="Science-Fiction") |
|---|
| 6 | rscott = Director(name="Ridley Scott") |
|---|
| 7 | glucas = Director(name="George Lucas") |
|---|
| 8 | alien = Movie(title="Alien", year=1979, director=rscott, genres=[scifi, Genre(name="Horror")]) |
|---|
| 9 | brunner = Movie(title="Blade Runner", year=1982, director=rscott, genres=[scifi]) |
|---|
| 10 | swars = Movie(title="Star Wars", year=1977, director=glucas, genres=[scifi]) |
|---|