scrapy-chan

1.0.1 • Public • Published

scrapy-chan

Scraping made easy.

Scraps 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

Readme

Keywords

none

Package Sidebar

Install

npm i scrapy-chan

Weekly Downloads

1

Version

1.0.1

License

ISC

Last publish

Collaborators

  • wonderflow-user
  • bitliner