also return cinematographer and editor
This commit is contained in:
parent
bf3e51df23
commit
10e9f54153
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue