I'm scraping the top 10 for Google and then coming back and scraping the top 100 (just hte first page when showing 100 results at a time. Is there a way to just save results 11-100 when scraping the 100 links per page (basically skipping the export of the top 10)
Yes, this is the way it is. It is enough take advantage of the Template Toolkit, and set a Result format: Code: [% FOREACH link IN serp %][% IF loop.count > 10 %][% serp.${loop.count}.link %][% END %] [% END %] P.S. And there's another way, maybe a little easier: instead of the above mentioned code to enter in Result format Code: $serp.slice(10, 99).format('$link\n')