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 placeholder for page and range/array of pages #16

Open sathish316 opened 12 years ago

sathish316 commented 12 years ago

Support crawling of paginated content using placeholder for page in html url and range or array of pages

Example:

class Book
  include Scrapify::Base
  html "http://www.bookstore.com/fiction/:page", page: 1..100
end