# you don't need to copy-paste this line, it's only useful when using the data
# as "from section6 import *"
from model import *

scifi = Genre(name="Science-Fiction")
rscott = Director(name="Ridley Scott")
glucas = Director(name="George Lucas")
alien = Movie(title="Alien", year=1979, director=rscott, genres=[scifi, Genre(name="Horror")])
brunner = Movie(title="Blade Runner", year=1982, director=rscott, genres=[scifi])
swars = Movie(title="Star Wars", year=1977, director=glucas, genres=[scifi])

