Skip to content

oren/scrapy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scrapy

a Module that scrape a business page on YP and return business name and phone

Example

var scrape = require('scrapy');
var url = 'http://www.yellowpages.com/west-monroe-la/mip/armstrong-cricket-farm-5032804?lid=5032804'

scrape(url, function(err, data) {
  if (err) {
    console.error(err);
  }
  
  console.log(data);  // { name: 'Armstrong Cricket Farm', phone: '(318)387-6000' }
});

Methods

var scrape = require('scrape');

scrape(url, cb);

Get business name and phone of a given url. cb is a callback.

cb(err, data) fires with the scraped information.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages