Ejemplo n.º 1
0
 def interpret(self, match):
     name = match.words.tokens
     return IsTeam() + HasName(name)
 def interpret(self, match):
     name = match.words.tokens
     return IsDirector() + HasName(name)
Ejemplo n.º 3
0
 def interpret(self, match):
     name = match.words.tokens
     exp = IsKeyword()
     exp.tables = ["keywords"]
     return IsGenre() + HasName(name)
 def interpret(self, match):
     name = match.words.tokens
     exp = IsGenre()
     return IsGenre() + HasName(name)
Ejemplo n.º 5
0
 def interpret(self, match):
     name = match.words.tokens
     exp = IsMovie()
     exp.tables = ["movies"]
     return IsMovie() + HasName(name)