I'm writing a program that gives information on actors and actresses, but I'm looking for a way to be able to get the Instagram link of the specified actor?
My code just asks for the actor or actresses name, (then it first searches for the id) then the output gives the latest five movies, the biography and the birth date and place.
(I am new to Python)
This is the code I use to get the biography and other information:
import imdb
ia = imdb.IMDb()
code = "0000093"
search_info = ia.get_person(code)
actor_results = ia.get_person_filmography(code)
print(search_info['name'],'\nDate of birth:',search_info['birth date'],'\nPlace of birth:', actor_results['data']['birth info'])