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.
Metacritic on IMDB
Re: Metacritic on IMDB
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"];