sathish316 / scrapify

ScrApify is a library to build APIs by scraping static sites and use data as models or JSON APIs. It powers APIfy which is used to create JSON APIs from any html or wikipedia page
http://apify.heroku.com/resources
143 stars 16 forks source link

pagination using array of pages #29

Open sathish316 opened 12 years ago

sathish316 commented 12 years ago

Crawl data across pages by extracting from an array of html urls

class Book
  include Scrapify::Base
  html ["http://www.bookstore.com/fiction/1", "http://www.bookstore.com/fiction/2", "http://www.bookstore.com/fiction/3"]
end