Skip to content

bitliner/scrapy-chan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scrapy-chan

Scraping made easy.

scrapy-chan offers multiple modular utilities for scraping.

They can be combined together to easily build and execute effective scraping.

Installation

npm i --save scrapy-chan

Usage

let SC = require('scrapy-chan');

SC.Url('news.ycombinator.com')
  .pipe( SC.ScrapeSinglePageWithoutAjax() )
  .pipe( SC.Parse() )
  .pipe( SC.Print() )
  .on('end', ()=>{
    // end  
  })
  .on('error', (err)=>{
    // err
  });

Utilities

TBD