I was looking at IMDb's Alternate Interfaces to find a way to quickly and easily retrieve information on a few hundred movies, to make a catalog for my collection. I was going to write a Python script to do all the hard work for me, but since Python is so widely used, I decided to do a little search on the topic before I start coding everything myself.
And guess what: there is already a Python package to do that: IMDbPY! It even has a web server package (imdbpyweb — a little buggy yet it works). The template is really ugly, and it can only display info on one movie, but it catches the data and only retrieves what is necessary, so it's quite fast. A little XHTML/CSS tweaking and it can look quite impressive.
So now I only have to write a snippet of code to do the search (using IMDbPY), pick the best result, download some basic info, like year, poster url, etc., and build a nice list to make an XHTML catalog for my movie files. It's not finished yet, but when I have something ready-to-use, I'll post it here (or maybe on the IMDbPY web site), maybe others might like it too.
Anyway, nice package. I like Python packages, they're easy to use, well documented, mostly cross-platform, and there's a whole bunch of them. That's why I decided to share my find with my readers (all eleven of them, he he). Maybe there are other Python addicts besides me out there :) So, have fun IMDbing!
