I have a .csv file with 1000 movies (https://github.com/LearnDataSci/articles/blob/master/Python%20Pandas%20Tutorial%20A%20Complete%20Introduction%20for%20Beginners/IMDB-Movie-Data.csv) and have been set the task of getting IMDb URLs for all 1000 movies.
I've tried using Cinemagoer, but I don't particularly want to plug in all 1000 titles by hand. Is there a more efficient way?
You can parse the table and use the 'title' column for Cinemagoer queries. Then you can get ID and just form an URL.