QuantumBro
Banned
That was what I was thinking, probably start out just by grabbing the vote count and then when I have more time, be able to post the names of who voted.
You would program a page scraper using Python or something, give it the pages you want to look at, and then use (as Makai said) regex to count occurrences of votes and unvotes and which posters are associated with them by looking through each page's source code.
Don't ask me how to do this, though. I know the theory, not the implementation.
Yeah I'm going with python, just took three lines of code to scrap a page and output it.
Actually, you could search for the highlight tags if you can get access to the markup.
Code:/([A-Z])\w+/g
That's what I'm thinking since I'll also have to find the unvotes.
Highlight tags are <span class="highlight"></span>