Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created April 1, 2011 15:22
Show Gist options
  • Save Altreus/898326 to your computer and use it in GitHub Desktop.
Save Altreus/898326 to your computer and use it in GitHub Desktop.
my $sc = Scraper->new($url);
while (my $manu = $sc->next_manufacturer()){
while (my $cat = $manu->next_category()) {
while (my $prod = $cat->next_product()) {
# woot
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment