I'm just getting into scraping with Scraperwiki in Python. Already figured out how to scrape tables from a page, run the scraper every month and save the results on top of each other. Pretty cool.
Now I want to scrape this page with information on Android versions and run the script monthly. In particular, I want the table for the version, codename, API and distribution. It's not easy.
The table is called with a wrapper div. Is there any way to scrape this information? I can't find any solution.
Plan B is to scrape the visualisation. What I eventually need, is the codename and the percentage, so that's sufficient. This information can be found in the HTML in a Google Chart script.
But I can't find this information with my 'souped' HTML. I have a public scraper over here. You can edit it to make it work.
Can anyone explain how I can approach this problem? A working scraper with comments on what's going on would be awesome.