diff --git a/oxweb/imdb.py b/oxweb/imdb.py index dcc30e0..295150a 100644 --- a/oxweb/imdb.py +++ b/oxweb/imdb.py @@ -652,6 +652,8 @@ class IMDb: credits['director'] = getNames(raw_credits.get('directors', '')) credits['writer'] = getNames(raw_credits.get('writers', '')) credits['producer'] = getNames(raw_credits.get('producers', '')) + credits['cinematographer'] = getNames(raw_credits.get('cinematographers', '')) + credits['editor'] = getNames(raw_credits.get('editors', '')) credits['cast'] = [(stripTags(decodeHtml(c[0])),stripTags(decodeHtml(c[1]))) for c in raw_credits.get('cast', [])] self.credits = credits