I was wondering if someone could help me get a list of all the actor's actress's filmography from a single show?
full_cast = ia.get_movie('0203259', 'full credits')
full_cast = full_cast['cast']
full_cast
I can get the filmography of one person using:
ice_t=i.get_person('0001384')
for job in ice_t['filmography'].keys():
print('# Job:', job)
for movie in ice_t['filmography'][job]:
print('\t t%s %s (role: %s)' % (movie.movieID, movie['title'], movie.currentRole))
but I don't know how to apply the function above to full_cast. Can someone help?