Script creates csv file with top#100 movies from IMDB 🎥🎬🎞
Get data about top 100 movies from IMDB
Scrape movie's ID that is a part or URL, for instance:
<a href="/title/tt0111161/?pf_rd_m=A2FGELUUNOQJNL&pf_rd_p=... </a>
The ID of this movie is "tt0111161"
Having a list of 100 movie IDs get each movie details from OMDBAPI
Put movies into CSV file sorted by year of production CSV will consists of only two columns: title, year.
100% test coverage is required (please use py.test)