ChibuezeBuilds/Movie-Recommendation-System — reverse-engineered prompt

Reverse engineered prompt

Build me a simple Python movie recommendation tool that visits IMDb’s Top 250 page, pulls the movie title, release year, and rating for each movie, then prints the full list in a clean readable way and tells me which movie has the highest rating. I want it to use Selenium for loading the page and BeautifulSoup for parsing it, since IMDb is dynamic.

Please make it easy to run from the command line with one main script, and keep the setup straightforward for Chrome and ChromeDriver. Add a small test or example request file if that helps verify it works. If IMDb changes its page layout, make the code easy to update and add clear comments showing where the selectors live. Also handle basic errors nicely, like if no movies are found or the browser driver is missing.

Keep this as a beginner friendly project, readable code, simple output, and short instructions in the README for how to install and run it. You can check current IMDb page details online if needed.

Want more depth? Deep Reverse