Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bitliner/scrapy-chan

Scraping made easy.
https://github.com/bitliner/scrapy-chan

crawling data-analytics nodejs npm scraping

Last synced: about 20 hours ago
JSON representation

Scraping made easy.

Awesome Lists containing this project

README

        

# 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