Page 1 of 1

Metacritic on IMDB

Posted: Sat Mar 19, 2011 12:38 pm
by lankysam
I have noticed that IMDB now has Metacritic ratings for some movies. If the IMDB scraper were modified so that these could be imported, that would be great, IMHO.

Thanks for considering.

Re: Metacritic on IMDB

Posted: Sun Mar 20, 2011 12:26 am
by Conor
Since we don't have a field for that info it's tricky to include in the official release. If you have Xcode you can grab a copy of the source code for the plugin and then add the following in the middle of resultNumber: method

Code: Select all

NSString *metaScore = [[results stringBetween:@"Metascore:" and:@"</"] stringByCleaningHTML];
[resultsDict setValue:metaScore forKey:@"custom1"];