Code Monkey home page Code Monkey logo

mycrawl's Introduction

mycrawl

Developed for yiqicha.net to crawl compamny registration information in Shanghai that is based on the website of http://www.sgs.gov.cn/shaic/. Any question is welcomed, contract [email protected]

This crawler can get company registration information , company certifaction process information.You should provide search parameters to crawler when use this module.

How to use?

  1. use npm to get the latest package npm install mycrawl
  2. generate you crawler
var Crawler = require('mycrawl').Crawler;
var crawler = new Crawler();

API

searchCompanyInformation

  registrationOptions =  {
    homeRefererUrl: 'http://www.sgs.gov.cn/lz/etpsInfo.do?method=index', // The referer url
    registrationResultsUrl: 'http://www.sgs.gov.cn/lz/etpsInfo.do?method=doSearch', // results for keywords url
    registrationDetailUrl: 'http://www.sgs.gov.cn/lz/etpsInfo.do?method=viewDetail' // url for keywords detail
  }
  var keywords = '上海东风';
  crawler.searchCompanyInformation(registrationOptions, keywords, function(err, registrationResults) {
    //you handle...
  });

getMoreRegistrations

crawler.getMoreRegistrations(registrationOptions, keywords, allpageNo, pageNo, function(err, moreRegistrations) {
      callback(err, moreRegistrations)
    })

searchCompanyNameStatus

var companyStatusOptions = {
  targetUrl: 'http://www.sgs.gov.cn/shaic/workonline/appStat!toNameAppList.action'
};

var keywords = '美孕国际'

crawler.searchCompanyNameStatus(companyStatusOptions, keyword, function(err, companyNameStatusInfo) {
  log(keyword, err, companyNameStatusInfo)
})

searchRegistrationStatus

var registrationStatusOption = {
  targetUrl : 'http://www.sgs.gov.cn/shaic/workonline/appStat!toEtpsAppList.action'
}

var keywords = '上海顺风';

crawler.searchRegistrationStatus(registrationStatusOption, keyword, function(err, registrationStatusInfo) {
  log(keyword, err, registrationStatusInfo)
})

getRegistrationDisclosure

registration disclosure information

  var options = {
  keyword: '310114000233023' // 统一社会信用代码/注册号
}

getCompanyDisclosure

This is the same as getRegistrationDisclosure api , but this is for company disclosure information

License: MIT

mycrawl's People

Watchers

James Cloos avatar  avatar

Forkers

0x24bin huokedu

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.