Project Title: Scrape Content from IMDB

Project Description:

From IMDB ( https://www.imdb.com/?ref_=nv_home ) we want to get a CSV with the columns:

Title, Description, Tags, People

i.e
https://www.imdb.com/title/tt0241527/?ref_=nv_sr_srsg_0
Title = Harry Potter
Description = An orphaned boy enrolls in a school of wizardry, where he learns the truth about himself, his family and the terrible evil that haunts the magical world.
Tags = [‘Adventure’, ‘Family’, ‘Fantasy’]
People = [‘Chris Columbus’, ‘J.K. Rowling’, ‘Steve Kloves’, ‘Daniel Radcliffe’, ‘Rupert Grint’, ‘Richard Harris’]

The key to this challenge is actually extracting all the data from movies and shows we actually care about.

You will have to extract that list from: https://www.justwatch.com/au/provider/binge

i.e a href in the div class ‘title-list-grid__item–link
But to get the actual title we will need to wrangle the text
i.e /au/tv-show/the-white-lotus = the white lotus

With this title we can now search for it on IMDM like https://www.imdb.com/find?q=the+white+lotus&ref_=nv_sr_sm

And then go to the results page https://www.imdb.com/title/tt13406094/?ref_=fn_al_tt_1 to scrape the appropriate data.

For similar work requirement feel free to email us on info@logicwis.com.