Get a Movie’s Details From IMDb

February 23, 2009 | 7 Comments

imdb

A while back when I was developing MoviePlay (a movies database) I wanted to allow the user to get the movie’s details from IMDb (The Internet Movie Database) instead of having him/her enter it manually. IMDb does not provide a way for developers to use their data, so I wrote the code below to screen scrape or web scrape the details from the movie’s page. It gets the title, director, genre, release year and tag line of the movie as well as the thumbnail.

Read more…

Filed Under: ASP.NET, Mono 2.0, WinForms

Dictionaries of HTML Codes

February 11, 2009 | 0 Comments

I wrote this class to help me do some screen scraping programs. It has two Dictionary objects. One contains the HTML codes and their text equivalents and the other contains the numeric HTML codes and their text equivalents.

Read more…

Filed Under: ASP.NET, WinForms