Injecting configuration and compiling...
Injecting scraper and running...
<html>
<head>
<title>Scrape this table of best selling albums</title>
</head>
<body>
<h1>Scrape this table of best selling albums</h1>
<table class="data">
<thead><tr class="tableizer-firstrow"><th>Artist</th><th>Album</th><th>Released</th><th>Empty column</th><th>Sales m</th></tr></thead><tbody>
<tr><td>Michael Jackson</td><td>Thriller</td><td>1982</td><td> </td><td>110</td></tr>
<tr><td>AC/DC</td><td>Back in Black</td><td>1980</td><td> </td><td>49</td></tr>
<tr><td>Pink Floyd</td><td>The Dark Side of the Moon</td><td>1973</td><td> </td><td>45</td></tr>
<tr><td>Whitney Houston / Various artists</td><td>The Bodyguard</td><td>1992</td><td> </td><td>44</td></tr>
<tr><td>Meat Loaf </td><td>Bat Out of Hell</td><td>1977</td><td> </td><td>43</td></tr>
<tr><td>Eagles</td><td>Their Greatest Hits (1971â€"1975)</td><td>1976</td><td> </td><td>42</td></tr>
</tbody></table>
<p>
<a class="next" href="/scraping-for-everyone/webpages/example_table_2.html">next page</a>
</p>
</body>
</html>
Traceback (most recent call last):
File "scraper.py", line 49, in <module>
scrape_and_look_for_next_link(starting_url)
{'Sales m': '110', 'Artist': 'Michael Jackson', 'Released': '1982', 'Album': 'Thriller'} ------------
File "scraper.py", line 34, in scrape_and_look_for_next_link
scrape_table(root)
File "scraper.py", line 26, in scrape_table
scraperwiki.datastore.save(["Artist"], record)
AttributeError: 'module' object has no attribute 'datastore'