Retrieve listing information for the given IMDb crew/cast link in the form of a dictionary with the title, role and release year of each entry. In case of a series, per ep info is not included.
Example usage:
python imdb_scraping.py nm6553571
process_page(page_id)
: Retrieve listing information for the given IMDb crew link
in the form of a dictionary with the title, role and release year
of each entry.
returns defaultdict in the format title id: Name, Year, Info, Category
'tt2802850': ['Fargo',
'2017',
'(TV Series) (digital compositor - 1 episode)',
'Visual effects'],
'tt3065204': ['The Conjuring 2',
'2016',
'(digital compositor)',
'Visual effects']
- bs4==0.0.1
- requests==2.24.0