davidchambers / tutor

JavaScript interface for the Gatherer card database
https://gatherer.wizards.com/
Do What The F*ck You Want To Public License
149 stars 18 forks source link

Card Rating #28

Closed bensquire closed 12 years ago

bensquire commented 12 years ago

Hi all,

Would it be possible to extract the card rating (for a given card id, obv). Bit tricky, but you could count all the images in the div 'ctl00_ctl00_ctl00_MainContent_SubContent_SubContent_currentRating_starRating' that contain the word 'solid' in the src.

I know I asked for the image URL before, and I appreciate the effort you guys put into tutor :)

Kind Regards Ben

davidchambers commented 12 years ago

This should be possible. There's even a textual representation of the rating we can use. Pale Moon, for example, currently has a rating of 1.339 / 5. I hope to add this attribute sometime this weekend.

bensquire commented 12 years ago

Ahhh yes, talk about over-complicating matters :) Thanks in advance!

davidchambers commented 12 years ago
> pale_moon.community_rating.rating
1.339
> pale_moon.community_rating.votes
84

You may wish to special-case cards with no votes, as Gatherer's default rating is 5.

bensquire commented 12 years ago

Legend, thank you :)