An open API service indexing awesome lists of open source software.

https://github.com/davidesantangelo/scrappet-rest-api

rails app for web scraping purposes. It scrapes a given page (by the URL), and returns you all informations about that page.
https://github.com/davidesantangelo/scrappet-rest-api

api rails ruby scraper

Last synced: about 1 year ago
JSON representation

rails app for web scraping purposes. It scrapes a given page (by the URL), and returns you all informations about that page.

Awesome Lists containing this project

README

          

# scrappet-rest-api
rails app for web scraping purposes. It scrapes a given page (by the URL), and returns you all informations about that page. This API use my own gem https://github.com/davidesantangelo/webinspector

# see in action
You can use scrappet-rest-api live at this url: https://scrappet.herokuapp.com

# getting started

git clone https://github.com/davidesantangelo/scrappet-rest-api.git

cd scrappet-rest-api & bundle install

rails s

# try it
curl -X GET http://127.0.0.1:3000/api/scrape?url=http://www.github.com

return a json hash with title, description, keywords, links, images etc..