Пример #1
0
    def initQynbInfo(self, module_super):
        module = Module(None, u"设置年份")

        def saveNbyear(qynb_url):
            self.value_dict['nb_name'] = re.findall(r'nbnd=(\d{4})', qynb_url,
                                                    re.S)[0]

        module.appendOutput(type=OutputType.FUNCTION, function=saveNbyear)
        module_super.appendSubModule(module, True)

        module = Module(self.visitQynb, u"获取企业年报")
        module.appendUrl(lambda qynb_url: qynb_url)
        module.appendHeaders(
            lambda ua, qyid, company_zch, qylx: {
                "User-Agent":
                ua,
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language":
                "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
                "Accept-Encoding":
                "gzip, deflate",
                "Host":
                "gsxt.jxaic.gov.cn",
                "Referer":
                "http://gsxt.jxaic.gov.cn/ECPS/ccjcgs/qygs_ViewQynb.pt?qyid=%s&zch=%s&qylx=%s&num=0&showgdxx=true"
                % (qyid, company_zch, qylx),
                "Connection":
                "keep-alive"
            })
        module.addEvent(Event(EventType.OUTPUT_NOT_SATISFIED, retry_times=5))
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
        module.addSleep(Sleep(2))
        module_super.appendSubModule(module, True)
Пример #2
0
    def initConfigValidateCode(self):
        module = Module(self.visitValidateCode, u"获取验证码")
        module.module_id = "init_validate_code"

        module.appendUrl(
            "http://gsxt.hljaic.gov.cn/validateCode.jspx?type=0&id=" +
            str(random.random()))
        module.appendHeaders({
            "Host": "gsxt.hljaic.gov.cn",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0",
            "Accept": "image/png,image/*;q=0.8,*/*;q=0.5",
            "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
            "Accept-Encoding": "gzip, deflate",
            "Referer": "http://gsxt.hljaic.gov.cn/search.jspx"
        })
        module.addSleep(Sleep(3))
        module.appendEncoding("utf-8")

        def checkValidatecode(yzm):
            if not yzm:
                self.holder.logging.warning(u"获取验证码失败")
                return False
            return True

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=100,
                  assert_function=checkValidatecode))

        self.module_manager.appendSubModule(module, True)
Пример #3
0
    def initConfigBaseInfo(self, module_super):
        module = Module(self.visitJbxx, u"基本信息")
        module.appendPostData(
            lambda pripid, entbigtype: {
                'djjg': '',
                'maent.entbigtype': entbigtype,
                'maent.pripid': pripid,
                'method': 'qyInfo',
                'random': str(int(time.time() * 1000))
            })
        module.appendWebMethod("post")
        module.appendUrl("http://gsxt.scaic.gov.cn/ztxy.do")
        module.appendHeaders(
            lambda ua: {
                "User-Agent": ua,
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
                "Accept-Encoding": "gzip, deflate",
                "Host": "gsxt.scaic.gov.cn",
                "Origin": "http://gsxt.scaic.gov.cn",
                "Referer": "http://gsxt.scaic.gov.cn/ztxy.do?method=index",
                "Connection": "keep-alive"
            })
        module.appendOutput("company_zch_list",
                            '//table[1]/tr[2]/td[1]/text()', OutputType.LIST)
        module.addEvent(Event(EventType.OUTPUT_NOT_SATISFIED, retry_times=5))

        def setCompanyZch(company_zch_list=None):
            self.value_dict['company_zch'] = company_zch_list[
                0] if company_zch_list else None

        module.appendOutput(type=OutputType.FUNCTION, function=setCompanyZch)

        #对公司名字和注册号码断言
        def assertNameZch(company_name=None, company_zch=None):
            if company_name and company_zch and (0 < len(company_name) <
                                                 100) and (0 < len(company_zch)
                                                           < 100):
                #self.report.access_type = SeedAccessType.OK
                return True
            return False

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=5,
                  assert_function=assertNameZch))

        #从基本信息页面中提取股东详情的参数,组成访问股东详情的post参数
        def getXhPripid(html):
            return re.findall(r'\s+onclick="showRyxx\(\'(.+?)\'\,\'(.+?)\'\)"',
                              html, re.S)

        module.appendOutput(name='xh_pripid',
                            type=OutputType.FUNCTION,
                            function=getXhPripid,
                            show_up=OutputParameterShowUpType.OPTIONAL)
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
        module.addSleep(Sleep(2))
        module_super.appendSubModule(module, True)
Пример #4
0
 def initSearchList(self):
     module = Module(self.visitSearchList,u"第三步_开始搜索公司列表")
     module.appendUrl("http://aic.hainan.gov.cn:1888/searchList.jspx")
     module.appendHeaders(
         {
             "Host": "aic.hainan.gov.cn:1888",
             "Connection": "keep-alive",
             "Cache-Control": "max-age=0",
             "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
             "Origin": "http://aic.hainan.gov.cn:1888",
             "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36",
             "Content-Type": "application/x-www-form-urlencoded",
             "Referer": "http://aic.hainan.gov.cn:1888/search.jspx",
             "Accept-Encoding": "gzip, deflate",
             "Accept-Language": "zh-CN,zh;q=0.8"
         }
     )
     module.appendWebMethod("post")
     module.appendPostData(lambda yzm, company_key:{
         "checkNo": yzm,
         "entName": company_key
     })
     module.appendOutput("url_list", ".//div[@class='list']//a/@href", OutputType.LIST)
     module.appendOutput("name_list", ".//div[@class='list']//a/text()", OutputType.LIST)
     module.appendOutput(name="search_list", type=OutputType.FUNCTION, function=lambda url_list, name_list: zip(url_list, name_list))
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=20, redo_module="hn_yzm_pic"))
     module.addEvent(Event(EventType.OUTPUT_NOT_SATISFIED, retry_times=20, redo_module="hn_yzm_pic"))
     module.addEvent(Event(EventType.ASSERT_FAILED, retry_times=0, assert_function=lambda :False if self.report.access_type == SeedAccessType.NON_COMPANY else True))
     module.appendMiddleValueMonitor("search_list")
     module.addSleep(Sleep(1))
     self.module_manager.appendSubModule(module)
Пример #5
0
    def checkCompanyName(self):
        module = Module(self.getWebHtml, u'验证公司名称')
        module.appendUrl(
            "http://gsxt.scaic.gov.cn/keyword.do?method=keywordFilter&random="
            + str(int(time.time())))
        module.appendHeaders(
            lambda ua: {
                "User-Agent": ua,
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
                "Accept-Encoding": "gzip, deflate",
                "Host": "gsxt.scaic.gov.cn",
                "Origin": "http://gsxt.scaic.gov.cn",
                "Referer": "http://gsxt.scaic.gov.cn/ztxy.do?method=index",
                "Connection": "keep-alive"
            })
        module.appendPostData(lambda company_key: {'qymc': company_key})
        module.appendWebMethod('post')

        def assertRecode(html):
            if self.report.access_type == SeedAccessType.NON_COMPANY:
                self.report.access_type = SeedAccessType.ERROR
            return True if html and html.strip() == '1' else False

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=100,
                  assert_function=assertRecode,
                  redo_module="check_validatecode"))
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=100))
        module.addSleep(Sleep(3))
        self.module_manager.appendSubModule(module, True)
Пример #6
0
 def initShareHolderDetail(self, module_super):
     iterator = Iterator("xh_pripid", "xh_prid")
     module = Module(None, "进入股东详情", iterator)
     module.module_id = "fetch_gdxq_info"
     module_super.appendSubModule(module, True)
     sub_module = Module(self.visitGdxq, u"获取股东翻页信息")
     sub_module.appendUrl('http://gsxt.scaic.gov.cn/ztxy.do')
     sub_module.appendHeaders(
         lambda ua: {
             "User-Agent": ua,
             "Accept":
             "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
             "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
             "Accept-Encoding": "gzip, deflate",
             "Host": "gsxt.scaic.gov.cn",
             "Origin": "http://gsxt.scaic.gov.cn",
             "Referer": "http://gsxt.scaic.gov.cn/ztxy.do",
             "Connection": "keep-alive"
         })
     sub_module.appendWebMethod("post")
     sub_module.appendPostData(
         lambda xh_prid: {
             'maent.pripid': xh_prid[1],
             'maent.entbigtype': xh_prid[0],
             'random': str(int(time.time() * 1000)),
             'method': 'tzrCzxxDetial',
             'random': str(int(time.time() * 1000))
         })
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
     module.addSleep(Sleep(2))
     module.appendSubModule(sub_module, True)
Пример #7
0
    def initConfigValidateCode(self):
        module = Module(self.visitValidateCode, u"获取验证码")
        module.module_id = "init_validate_code"

        module.appendUrl(
            "http://www.nmgs.gov.cn:7001/aiccips/verify.html?random=" +
            str(random.random()))
        module.appendHeaders({
            'Host':
            'www.nmgs.gov.cn:7001',
            'Connection':
            'keep-alive',
            'Accept':
            'image/webp,*/*;q=0.8',
            'Referer':
            'http://www.nmgs.gov.cn:7001/aiccips/',
            'Accept-Encoding':
            'gzip, deflate, sdch',
            'Accept-Language':
            'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4'
        })
        module.addSleep(Sleep(3))
        module.appendEncoding("utf-8")

        def checkValidatecode(yzm):
            if not yzm:
                return False
            return True

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=100,
                  assert_function=checkValidatecode))

        self.module_manager.appendSubModule(module, True)
Пример #8
0
 def initAnnualReportPre(self, module_super):
     module = Module(self.getWebHtml, u"获取年报年份列表")
     module.module_id = "fetch_qynb_list"
     module.appendUrl(lambda com :"http://218.57.139.24/pub/qygsdetail/%s/%s"%(com[3], com[2]))
     module.appendHeaders(lambda ua, com: {
         "User-Agent": ua,
         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
         "Accept-Encoding": "gzip, deflate",
         "Host": "218.57.139.24",
         "Referer": "http://218.57.139.24/pub/"+com[1],
         "Connection": "keep-alive"})
     module.appendOutput("qynb_search_parms", '//table/tr/td/a', OutputType.LIST, show_up=OutputParameterShowUpType.OPTIONAL)
     def getQynbParms(qynb_search_parms=None):
         #print 'qynb_search_parms   :', qynb_search_parms
         if not qynb_search_parms:
             return []
         rt_list = []
         for tag_a in qynb_search_parms:
             href = tag_a.xpath('./@href')
             nb_name = tag_a.xpath('./text()')
            # print href, '---->' ,  nb_name
             if href and nb_name:
                 nb_year = re.findall(r'.*?(\d{4}).+?', nb_name[0].strip(), re.S)
              #  print 'nb_year, ', nb_year
                 if nb_year:
                     rt_list.append((nb_year[0].strip(), href[0].strip()))
      #   print 'rt_lsit ', rt_list
         return rt_list
     module.appendOutput(name="qinb_param_list", type=OutputType.FUNCTION, function=getQynbParms, show_up=OutputParameterShowUpType.OPTIONAL)
     module.addSleep(Sleep(2))
     module_super.appendSubModule(module, True)
Пример #9
0
    def initCookie(self):
        module = Module(self.getWebHtml, u"获取cookie")
        module.module_id = "module_cookie"
        module.appendUrl('http://211.141.74.198:8081/aiccips/')
        module.appendHeaders(
            lambda ua: {
                'Connection': 'keep-alive',
                'Accept-Language': 'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4',
                'Accept-Encoding': 'gzip, deflate, sdch',
                'Cache-Control': 'max-age=0',
                'Referer': 'http://211.141.74.198:8081/aiccips/',
                'Host': '211.141.74.198:8081',
                'Accept':
                'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
                'User-Agent': ua
            })

        def getCookie(html):
            pattern = re.compile(r'\}\(([\s\S]*?\{\})\)\)', re.S)
            result = pattern.search(html).group(1)
            params = result.split(',')
            if len(params) != 6:
                raise Exception("cookie获取失败!")
            strstr = 'var document = {};var window = {};document[\'cookie\'] = "";window[\'location\'] ={}; \
                window[\'location\'][\'reload\'] = function(){};eval(function (p, a, c, k, e, r) { \
            	e = function(c) { \
            		return c.toString(a) \
            	}; \
            	if (!\'\'.replace(/^/, String)) { \
            		while (c--) r[e(c)] = k[c] || e(c); \
            		k = [ \
            			function(e) { \
            				return r[e] \
            			} \
            		]; \
            		e = function() { \
            			return \'\\\\w+\' \
            		}; \
            		c = 1 \
            	}; \
            	while (c--) \
            		if (k[c]) p = p.replace(new RegExp(\'\\\\b\' + e(c) + \'\\\\b\', \'g\'), k[c]); \
            	return p \
            }(' + params[0] + ',' + params[1] + ',' + params[2] + ',' + params[
                3] + ',' + params[4] + ',' + params[5] + ')); \
                challenge();var a = document[\'cookie\'];'

            with PyV8.JSContext() as se:
                se.eval(strstr)
                a = se.locals.a
                cookie = a.split('=')[1].split(';')[0]
                cookie_temp1 = dict({'ROBOTCOOKIEID': cookie})
                return cookie_temp1

        module.appendOutput(name="cookie",
                            type=OutputType.FUNCTION,
                            function=getCookie)
        module.appendMiddleValueMonitor("cookie")
        module.addSleep(Sleep(3))
        self.module_manager.appendSubModule(module, True)
Пример #10
0
 def  initCompanyInfo(self, module_super):
     module = Module(self.visitJbxx, u"基本信息")
     module.appendUrl(lambda com : "http://218.57.139.24/pub/"+com[1])
     # def pri_com(com, company_zch):
     #     print 'COMMMMMMoC  ', com[0],  com[1], company_zch
     module.appendHeaders(lambda ua: {
         "Host": "218.57.139.24",
         "User-Agent": ua,
         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
         "Accept-Encoding": "gzip, deflate",
         "Connection": "keep-alive",
         'Referer':'http://218.57.139.24/'})
     module.appendOutput("company_zch_list", '//table[1]/tr[2]/td[1]/text()', OutputType.LIST)
     def setCompanyZch(company_zch_list=None):
         self.value_dict['company_zch'] = company_zch_list[0].strip() if company_zch_list else None
     module.appendOutput(type=OutputType.FUNCTION, function=setCompanyZch)
     module.addEvent(Event(EventType.OUTPUT_NOT_SATISFIED, retry_times=5, redo_module='home_page'))
     def getGdxxParms(html):
         return  re.findall(r'\,"recid":"(.+?)",', html, re.S) if html else []
     module.appendOutput(name="recid_list", type=OutputType.FUNCTION, function=getGdxxParms, show_up=OutputParameterShowUpType.OPTIONAL) #提取股东详情的list
     #module.appendOutput(type=OutputType.FUNCTION, function=pri_com)
     module.addSleep(Sleep(2))
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5, redo_module='home_page'))
     module_super.appendSubModule(module, True)
Пример #11
0
    def initAnnualReport(self, module_super):
        iterator = Iterator(seeds="nb_list",param_name="nb")
        module=Module(None, u"遍历企业年报列表获取Url",iterator)
        module_super.appendSubModule(module)

    #     self.initAnnualReportInfo(module)
    #
    # def initAnnualReportInfo(self, module_super):
    #     module = Module(self.visitQynb, u"获取企业年报详细信息")

        sub_module = Module(self.visitQynb, u"获取企业年报详细信息")
        def annual_convert(nb):
            con_dict = dict()
            con_dict["nb_url"] = "http://aic.hainan.gov.cn:1888%s" % ''.join(nb.xpath("@href"))
            con_dict["nb_name"] = ''.join(nb.xpath("text()")).replace(u"年度报告", "")
            return con_dict
        sub_module.appendInput(InputType.FUNCTION, input_value=annual_convert)
        sub_module.appendUrl("nb_url")
        sub_module.appendHeaders(
            lambda company_url:
            {
                "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
                "Accept-Encoding": "gzip, deflate",
                "Accept-Language": "zh-CN,zh;q=0.8",
                "Cache-Control": "max-age=0",
                "Connection": "keep-alive",
                "Host": "aic.hainan.gov.cn:1888",
                "Referer": company_url,
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36"
            }
        )
        sub_module.addSleep(Sleep(2))
        module.appendSubModule(sub_module)
Пример #12
0
 def initConfigHomePage(self):
     module = Module(self.visitHomePage, u"首页")
     module.module_id = "module_home_page"
     module.appendUrl("http://211.141.74.198:8081/aiccips/")
     module.appendHeaders({
         'Connection':
         'keep-alive',
         'Accept-Language':
         'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4',
         'Accept-Encoding':
         'gzip, deflate, sdch',
         'Cache-Control':
         'max-age=0',
         'Referer':
         'http://211.141.74.198:8081/aiccips/',
         'Host':
         '211.141.74.198:8081',
         'Accept':
         'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
         'User-Agent':
         'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:36.0) Gecko/20100101 Firefox/36.0'
     })
     module.appendCookie("cookie")
     module.appendOutput("csrf", ".//input[@name='_csrf']/@value",
                         OutputType.LIST)
     module.appendMiddleValueMonitor("csrf")
     module.addSleep(Sleep(3))
     self.module_manager.appendSubModule(module, True)
Пример #13
0
    def initSubmitYzm(self):
        module = Module(self.getJson, u"第二步_提交验证码验证")
        module.appendUrl("http://aic.hainan.gov.cn:1888/checkCheckNo.jspx")
        module.appendHeaders(
            {
                "Accept": "application/json, text/javascript, */*; q=0.01",
                "Accept-Encoding": "gzip, deflate",
                "Accept-Language": "zh-CN,zh;q=0.8",
                "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
                "Host": "aic.hainan.gov.cn:1888",
                "Origin": "http://aic.hainan.gov.cn:1888",
                "Proxy-Connection": "keep-alive",
                "Referer": "http://aic.hainan.gov.cn:1888/search.jspx",
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36",
                "X-Requested-With": "XMLHttpRequest"
            }
        )
        module.appendWebMethod("post")
        module.appendPostData(lambda yzm: {"checkNo": yzm})
        module.addSleep(Sleep(3))
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=0, redo_module="hn_yzm_pic"))

        # 验证码判断条件
        def submitYzmResult(json=None):
            if not json:
                return False
            if '{success:true}' not in json:
                return False
            return True
        module.addEvent(Event(EventType.ASSERT_FAILED, assert_function=submitYzmResult, retry_times=0, redo_module="hn_yzm_pic"))
        self.module_manager.appendSubModule(module)
Пример #14
0
    def initConfigValidateCode(self):
        module = Module(self.visitValidateCode, u'获取验证码图片')
        module.module_id = "check_validatecode"
        module.appendUrl(
            "http://gsxt.scaic.gov.cn/ztxy.do?method=createYzm&dt=" +
            str(int(time.time())) + "&random=" + str(int(time.time())))
        module.appendHeaders(
            lambda ua: {
                "Host": "gsxt.scaic.gov.cn",
                "User-Agent": ua,
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
                "Accept-Language": "zh-CN,zh;q=0.8",
                "Accept-Encoding": "gzip, deflate, sdch",
                "Connection": "keep-alive",
                'Cache-Control': 'max-age=0',
                'Upgrade-Insecure-Requests': 1
            })

        #对验证码进行简单的断言
        def assertYzm(yzm=None):
            print 'Yzm  , ', yzm
            if isinstance(yzm, int):
                return True
            return True if yzm else False

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=100,
                  assert_function=assertYzm,
                  redo_module="check_validatecode"))
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=100))
        module.addSleep(Sleep(2))
        self.module_manager.appendSubModule(module, True)
Пример #15
0
 def initPenaltyInfo(self, module_super):
     module = Module(self.visitXzcf, u"获取行政处罚信息")
     module.appendUrl("http://gsxt.scaic.gov.cn/ztxy.do")
     module.appendHeaders(
         lambda ua: {
             "User-Agent": ua,
             "Accept":
             "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
             "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
             "Accept-Encoding": "gzip, deflate",
             "Host": "gsxt.scaic.gov.cn",
             "Origin": "http://gsxt.scaic.gov.cn",
             "Referer": "http://gsxt.scaic.gov.cn/ztxy.do?method=index",
             "Connection": "keep-alive"
         })
     module.appendWebMethod("post")
     module.appendPostData(
         lambda pripid, entbigtype: {
             'czmk': 'czmk3',
             'maent.entbigtype': entbigtype,
             'maent.pripid': pripid,
             'method': 'cfInfo',
             'random': str(int(time.time() * 1000))
         })
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
     module.addSleep(Sleep(2))
     module_super.appendSubModule(module, True)
Пример #16
0
    def getCmpnySereachList(self):
        module = Module(self.visitSearchList, u"抓取公司列表")
        module.module_id = "get_search_list"

        module.appendUrl(
            "http://www.nmgs.gov.cn:7001/aiccips/CheckEntContext/showInfo.html"
        )
        module.appendHeaders({
            'Host':
            'www.nmgs.gov.cn:7001',
            'Connection':
            'keep-alive',
            'Cache-Control':
            'max-age=0',
            'Accept':
            'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
            'Origin':
            'http://www.nmgs.gov.cn:7001',
            'Content-Type':
            'application/x-www-form-urlencoded',
            'Referer':
            'http://www.nmgs.gov.cn:7001/aiccips/',
            'Accept-Encoding':
            'gzip, deflate',
            'Accept-Language':
            'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4'
        })
        module.appendWebMethod("post")
        module.appendEncoding("utf-8")
        module.appendPostData(lambda yzm, textfield: {
            "code": yzm,
            "textfield": textfield.replace(r"\n", "")
        })
        module.addSleep(Sleep(3))

        module.appendOutput("url_list", ".//*[@class='list']/ul/li/a/@href",
                            OutputType.LIST)
        module.appendOutput("name_list", ".//*[@class='list']/ul/li/a/text()",
                            OutputType.LIST)
        module.appendOutput(
            name="search_list",
            type=OutputType.FUNCTION,
            function=lambda url_list, name_list: zip(url_list, name_list))

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=0,
                  assert_function=lambda: False if self.report.access_type ==
                  SeedAccessType.NON_COMPANY else True))
        module.addEvent(
            Event(EventType.EXCEPTION_OCCURED,
                  retry_times=100,
                  redo_module="init_validate_code"))
        module.addEvent(
            Event(EventType.OUTPUT_NOT_SATISFIED,
                  retry_times=100,
                  redo_module="init_validate_code"))

        self.module_manager.appendSubModule(module)
Пример #17
0
    def checkValidateCode(self):
        module = Module(self.getJson, u"检验验证码")
        module.module_id = "check_validate_code"

        module.appendUrl(
            "http://www.nmgs.gov.cn:7001/aiccips/CheckEntContext/checkCode.html"
        )
        module.appendHeaders({
            'Host':
            'www.nmgs.gov.cn:7001',
            'Connection':
            'keep-alive',
            'Accept':
            'application/json, text/javascript, */*; q=0.01',
            'Origin':
            'http://www.nmgs.gov.cn:7001',
            'X-Requested-With':
            'XMLHttpRequest',
            'Content-Type':
            'application/x-www-form-urlencoded; charset=UTF-8',
            'Referer':
            'http://www.nmgs.gov.cn:7001/aiccips/',
            'Accept-Encoding':
            'gzip, deflate',
            'Accept-Language':
            'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4'
        })
        module.appendWebMethod("post")
        module.addSleep(Sleep(3))
        module.appendEncoding("utf-8")
        module.appendPostData(lambda yzm, company_key: {
            "code": yzm,
            "textfield": company_key
        })

        def checkValidatecode(web=None):
            if not web:
                return False
            else:
                pattern = re.compile(r'\"([\s\S]*?)\"')
                flags = pattern.findall(str(web.body))
                if (len(flags) != 4 or flags[2] != 'textfield') or (
                        flags[0] == 'flag' and flags[1] != str(1)):
                    self.holder.logging.warning(u"验证码校验失败!")
                    return False
                else:
                    self.value_dict["textfield"] = flags[3].decode(
                        'raw_unicode_escape')
            return True

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=100,
                  assert_function=checkValidatecode,
                  redo_module="init_validate_code"))

        self.module_manager.appendSubModule(module, True)
Пример #18
0
    def getCmpnySereachList(self):
        """
        抓取公司列表
        :output: url_list, name_list, search_list
        :return:
        """
        module = Module(self.visitSearchList, u"抓取公司列表")
        module.module_id = "get_search_list"

        module.appendUrl("http://218.95.241.36/searchList.jspx")
        module.appendHeaders({
            "Host": "218.95.241.36",
            "Proxy-Connection": "keep-alive",
            "Cache-Control": "max-age=0",
            "Accept":
            "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
            "Origin": "http://218.95.241.36",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36",
            "Content-Type": "application/x-www-form-urlencoded",
            "Referer": "http://218.95.241.36/search.jspx",
            "Accept-Encoding": "gzip, deflate",
            "Accept-Language": "zh-CN,zh;q=0.8"
        })
        module.appendWebMethod("post")
        module.appendEncoding("utf-8")
        module.appendPostData(lambda yzm, company_key: {
            "checkNo": yzm,
            "entName": company_key
        })
        module.addSleep(Sleep(3))

        module.appendOutput("url_list", ".//*[@class='list']/ul/li/a/@href",
                            OutputType.LIST)
        module.appendOutput("name_list", ".//*[@class='list']/ul/li/a/text()",
                            OutputType.LIST)
        module.appendOutput(
            name="search_list",
            type=OutputType.FUNCTION,
            function=lambda url_list, name_list: zip(url_list, name_list))

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=0,
                  assert_function=lambda: False if self.report.access_type ==
                  SeedAccessType.NON_COMPANY else True))
        module.addEvent(
            Event(EventType.EXCEPTION_OCCURED,
                  retry_times=100,
                  redo_module="init_validate_code"))
        module.addEvent(
            Event(EventType.OUTPUT_NOT_SATISFIED,
                  retry_times=100,
                  redo_module="init_validate_code"))

        self.module_manager.appendSubModule(module)
Пример #19
0
    def getStockholderInfo(self, module_super):
        """
        抓取翻页的股东信息
        :param module_super:
        :return:
        """
        module = Module(self.visitGdxx, u"抓取股东信息")
        module.module_id = "get_stockholder_info"

        module.appendUrl(
            lambda pno, company_id:
            "http://218.95.241.36/QueryInvList.jspx?pno=%s&mainId=%s" %
            (pno, company_id))
        module.appendHeaders(
            lambda company_id: {
                'Host':
                '218.95.241.36',
                'Proxy-Connection':
                'keep-alive',
                'Cache-Control':
                'max-age=0',
                'User-Agent':
                "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/39.0",
                'Accept':
                'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
                'Referer':
                'http://218.95.241.36/businessPublicity.jspx?id=' + str(
                    company_id),
                'Accept-Encoding':
                'gzip, deflate',
                "Accept-Language":
                "zh-CN,zh;q=0.8"
            })
        module.appendEncoding("utf-8")
        module.addSleep(Sleep(3))

        def getGdxqList(html):
            query_dict = dict()
            try:
                tree = etree.HTML(html)
                query_dict["gdxq_list"] = tree.xpath(
                    ".//*[@class='detailsList']/tr/td/a/@onclick")
            except Exception as e:
                self.holder.logging.warning(u"获取股东翻页中的股东详情列表失败: %s" % e)
                query_dict = dict()
            return query_dict

        module.appendOutput(type=OutputType.FUNCTION,
                            function=getGdxqList,
                            show_up=OutputParameterShowUpType.OPTIONAL)
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=50))

        module_super.appendSubModule(module, True)
Пример #20
0
 def initConfigSearchList(self):
     module = Module(self.visitSearchList, u"搜索列表")
     module.appendUrl('http://211.141.74.198:8081/aiccips/pub/indsearch')
     module.appendHeaders({
         'Connection':
         'keep-alive',
         'Accept-Language':
         'en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4',
         'Accept-Encoding':
         'gzip, deflate',
         'Cache-Control':
         'max-age=0',
         'Referer':
         'http://211.141.74.198:8081/aiccips/',
         'Host':
         '211.141.74.198:8081',
         'Accept':
         'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
         'User-Agent':
         'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:36.0) Gecko/20100101 Firefox/36.0'
     })
     module.appendWebMethod("post")
     module.appendPostData(
         lambda csrf, yzm, company_key: {
             'kw': company_key,
             '_csrf': csrf[-1],  # 参数不为空由首页输出模块保证,且此参数为必选参数,故未做判断直接使用
             'secode': getMd5WithString(yzm)
         })
     module.appendCookie("cookie")
     module.appendOutput("url_list", ".//*[@class='list']/ul/li/a/@href",
                         OutputType.LIST)
     module.appendOutput("name_list", ".//*[@class='list']/ul/li/a/text()",
                         OutputType.LIST)
     module.appendOutput(
         name="search_list",
         type=OutputType.FUNCTION,
         function=lambda url_list, name_list: zip(url_list, name_list))
     module.addEvent(
         Event(EventType.EXCEPTION_OCCURED,
               retry_times=100,
               redo_module="module_cookie"))
     module.addEvent(
         Event(EventType.OUTPUT_NOT_SATISFIED,
               retry_times=100,
               redo_module="module_cookie"))
     module.addEvent(
         Event(EventType.ASSERT_FAILED,
               retry_times=0,
               assert_function=lambda: False if self.report.access_type ==
               SeedAccessType.NON_COMPANY else True))
     module.addSleep(Sleep(3))
     self.module_manager.appendSubModule(module)
Пример #21
0
    def getAnnalsInfo(self, module_super):
        """
        遍历年报列表
        :param module_super:
        :return:
        """
        iterator = Iterator("annals_list", "annals")
        module = Module(None, u"遍历年报列表", iterator)
        module_super.appendSubModule(module, True)

        sub_module = Module(self.visitQynb, u"抓取年报详情")
        sub_module.module_id = "get_annals_info"

        def prepareParams(annals):
            mv_dict = dict()
            if annals and len(annals) >= 2:
                mv_dict['nb_url'] = annals[0]
                mv_dict['nb_name'] = annals[1]
            return mv_dict

        sub_module.appendInput(InputType.FUNCTION, input_value=prepareParams)

        def getURL(nb_url=None):
            if nb_url:
                return u'http://218.95.241.36' + nb_url
            return None

        sub_module.appendUrl(getURL)

        sub_module.appendHeaders({
            "Host": "218.95.241.36",
            "Proxy-Connection": "keep-alive",
            "Cache-Control": "max-age=0",
            "Accept":
            "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36",
            "Referer": "http://218.95.241.36/searchList.jspx",
            "Accept-Encoding": "gzip, deflate",
            "Accept-Language": "zh-CN,zh;q=0.8"
        })
        sub_module.appendEncoding("utf-8")
        sub_module.addSleep(Sleep(3))

        sub_module.addEvent(
            Event(EventType.EXCEPTION_OCCURED,
                  retry_times=100,
                  redo_module="get_annals_info"))

        module.appendSubModule(sub_module)
Пример #22
0
 def initYzmPic(self):
     module = Module(self.visitValidateCode, u'获取验证码图片')
     module.appendUrl('http://218.57.139.24/securitycode')
     module.appendHeaders(lambda ua:{
         "Host": "218.57.139.24",
         "User-Agent": ua,
         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
         "Accept-Encoding": "gzip, deflate",
         "Connection": "keep-alive"
     })
     module.addSleep(Sleep(2))
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5, redo_module='home_page'))
     self.module_manager.appendSubModule(module, True)
Пример #23
0
    def getStockholderInfo(self, module_super):
        """
        抓取翻页的股东信息
        :param module_super:
        :return:
        """
        module = Module(self.visitGdxx, u"抓取股东信息")
        module.module_id = "get_stockholder_info"

        module.appendUrl(
            lambda pno, company_id:
            "http://gsxt.hljaic.gov.cn/QueryInvList.jspx?pno=%s&mainId=%s" %
            (pno, company_id))
        module.appendHeaders(
            lambda company_id: {
                "Host":
                "gsxt.hljaic.gov.cn",
                "User-Agent":
                "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0",
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language":
                "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
                "Accept-Encoding":
                "gzip, deflate",
                'Referer':
                'http://gsxt.hljaic.gov.cn/businessPublicity.jspx?id=' + str(
                    company_id),
            })
        module.appendEncoding("utf-8")
        module.addSleep(Sleep(3))

        def getGdxqList(html):
            query_dict = dict()
            try:
                tree = etree.HTML(html)
                query_dict["gdxq_list"] = tree.xpath(
                    ".//*[@class='detailsList']/tr/td/a/@onclick")
            except Exception as e:
                self.holder.logging.warning(u"获取股东翻页中的股东详情列表失败: %s" % e)
                query_dict = dict()
            return query_dict

        module.appendOutput(type=OutputType.FUNCTION,
                            function=getGdxqList,
                            show_up=OutputParameterShowUpType.OPTIONAL)
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=50))

        module_super.appendSubModule(module, True)
Пример #24
0
 def initHomePage(self):
     module = Module(self.visitHomePage, u"访问首页")
     module.module_id = "home_page"
     module.appendUrl('http://218.57.139.24')
     module.appendHeaders(lambda ua: {
         "Host": '218.57.139.24',
         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language": "en-US,en;q=0.8",
         "Accept-Encoding": "gzip, deflate, sdch",
         "Connection": "keep-alive",
         'User-Agent': ua})
     module.addSleep(Sleep(2))
     module.appendOutput("csrf", '//form[@id="searchform"]/input[@name="_csrf"]/@value', OutputType.LIST)
     module.addEvent(Event(EventType.OUTPUT_NOT_SATISFIED, retry_times=100))
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
     self.module_manager.appendSubModule(module, True)
Пример #25
0
    def getCmpnySereachList(self):
        module = Module(self.visitSearchList, u"抓取公司列表")
        module.module_id = "get_search_list"

        module.appendUrl("http://gsxt.hljaic.gov.cn/searchList.jspx")
        module.appendHeaders({
            "Host": "gsxt.hljaic.gov.cn",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0",
            "Accept": "text/plain, */*; q=0.01",
            "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
            "Accept-Encoding": "gzip, deflate",
            "Content-Type": "application/x-www-form-urlencoded",
            "Referer": "http://gsxt.hljaic.gov.cn/search.jspx"
        })
        module.appendWebMethod("post")
        module.appendEncoding("utf-8")
        module.appendPostData(lambda yzm, company_key: {
            "checkNo": yzm,
            "entName": company_key
        })
        module.addSleep(Sleep(3))

        module.appendOutput("url_list", ".//*[@class='list']/ul/li/a/@href",
                            OutputType.LIST)
        module.appendOutput("name_list", ".//*[@class='list']/ul/li/a/text()",
                            OutputType.LIST)
        module.appendOutput(
            name="search_list",
            type=OutputType.FUNCTION,
            function=lambda url_list, name_list: zip(url_list, name_list))

        module.addEvent(
            Event(EventType.ASSERT_FAILED,
                  retry_times=0,
                  assert_function=lambda: False if self.report.access_type ==
                  SeedAccessType.NON_COMPANY else True))
        module.addEvent(
            Event(EventType.EXCEPTION_OCCURED,
                  retry_times=100,
                  redo_module="init_validate_code"))
        module.addEvent(
            Event(EventType.OUTPUT_NOT_SATISFIED,
                  retry_times=100,
                  redo_module="init_validate_code"))

        self.module_manager.appendSubModule(module)
Пример #26
0
    def getAnnalsInfo(self, module_super):
        iterator = Iterator("annals_list", "annals")
        module = Module(None, u"遍历年报列表", iterator)
        module_super.appendSubModule(module, True)

        sub_module = Module(self.visitQynb, u"抓取年报详情")
        sub_module.module_id = "get_annals_info"

        def prepareParams(annals):
            mv_dict = dict()
            if annals and len(annals) >= 2:
                mv_dict['nb_url'] = annals[0]
                mv_dict['nb_name'] = annals[1]
            return mv_dict

        sub_module.appendInput(InputType.FUNCTION, input_value=prepareParams)

        def getURL(nb_url=None):
            if nb_url:
                return u'http://gsxt.hljaic.gov.cn' + nb_url
            return None

        sub_module.appendUrl(getURL)

        sub_module.appendHeaders({
            "Host":
            "gsxt.hljaic.gov.cn",
            "User-Agent":
            "Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0",
            "Accept":
            "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
            "Accept-Language":
            "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3",
            "Accept-Encoding":
            "gzip, deflate",
            "Referer":
            "http://gsxt.hljaic.gov.cn/searchList.jspx"
        })
        sub_module.appendEncoding("utf-8")
        sub_module.addSleep(Sleep(3))

        sub_module.addEvent(
            Event(EventType.EXCEPTION_OCCURED,
                  retry_times=100,
                  redo_module="get_annals_info"))

        module.appendSubModule(sub_module)
Пример #27
0
 def initQynbInfo(self, module_super):
     module = Module(None, u"设置年份")
     module.appendOutput(type=OutputType.FUNCTION, function=lambda qynb_tuper: {'nb_name':qynb_tuper[0]})
     module_super.appendSubModule(module, True)
     module = Module(self.visitQynb, u"获取企业年报")
     module.appendUrl(lambda qynb_tuper:"http://218.57.139.24%s" % qynb_tuper[1])
     module.appendHeaders(lambda ua, com:{
         "User-Agent": ua,
         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
         "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
         "Accept-Encoding": "gzip, deflate",
         "Host": "218.57.139.24",
         "Referer": "http://218.57.139.24/pub/qygsdetail/%s/%s" % (com[3], com[2]),
         "Connection": "keep-alive"})
     module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
     module.addSleep(Sleep(2))
     module_super.appendSubModule(module, True)
Пример #28
0
    def initShareholderInfoDetail(self, module_super):
        iterator = Iterator("gdxx_list", "gdxx_rcd")
        module = Module(None, u"开始获取股东详情", iterator)
        module_super.appendSubModule(module, True)

        sub_module = Module(self.visitGdxq, u"获取股东详情信息")
        def getGdxqUrl(gdxx_rcd):
            for key in gdxx_rcd:
                if 'onclick' in gdxx_rcd[key]:
                    onclick_dict = eval(gdxx_rcd[key]) if isinstance(gdxx_rcd[key], basestring) else gdxx_rcd[key]
                    onclick = onclick_dict["onclick"]
                    xq_link = onclick[onclick.find('(')+1:onclick.find(')')].replace("'", "")
                    xq_url = "http://aic.hainan.gov.cn:1888" + xq_link
                    return xq_url
            return None
        sub_module.appendUrl(getGdxqUrl)
        sub_module.addSleep(Sleep(2))
        module.appendSubModule(sub_module)
Пример #29
0
 def initAnnualReportList(self, module_super):
     module = Module(self.visitQynbList, u"第九步_获取企业年报列表")
     module.appendUrl(lambda id: "http://aic.hainan.gov.cn:1888/enterprisePublicity.jspx?id=%s" % id)
     module.appendHeaders(
         lambda company_url:
         {
             "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
             "Accept-Encoding": "gzip, deflate",
             "Accept-Language": "zh-CN,zh;q=0.8",
             "Cache-Control": "max-age=0",
             "Connection": "keep-alive",
             "Host": "aic.hainan.gov.cn:1888",
             "Referer": company_url,
             "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36"
         }
     )
     module.appendOutput(name="nb_list", xpath=".//*[@id='qiyenianbao']/table//td/a", type=OutputType.LIST, show_up=OutputParameterShowUpType.OPTIONAL)
     module.addSleep(Sleep(2))
     module_super.appendSubModule(module)
Пример #30
0
    def initQynbInfo(self, module_super):
        module = Module(None, u"设置年份")

        def saveNbyear(qynb_year):
            if qynb_year and qynb_year.strip():
                self.value_dict['nb_name'] = qynb_year.strip()

        module.appendOutput(type=OutputType.FUNCTION, function=saveNbyear)
        module_super.appendSubModule(module, True)

        module = Module(self.visitQynb, u"获取企业年报")
        module.appendUrl("http://gsxt.scaic.gov.cn/ztxy.do")
        module.appendHeaders(
            lambda ua: {
                "User-Agent": ua,
                "Accept":
                "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language": "zh-cn,zh;q=0.8,en-us;q=0.5,en;q=0.3",
                "Accept-Encoding": "gzip, deflate",
                "Host": "gsxt.scaic.gov.cn",
                "Referer": "http://gsxt.scaic.gov.cn/ztxy.do",
                "Connection": "keep-alive"
            })
        module.appendWebMethod("post")
        module.appendPostData(
            lambda pripid, qynb_year: {
                'maent.nd': qynb_year.strip(),
                'maent.pripid': pripid,
                'method': 'ndbgDetail',
                'random': str(int(time.time() * 1000))
            })
        module.appendOutput(
            "nb_zch", '//div[@id="qufenkuang"]/table[1]/tr[3]/td[1]/text()',
            OutputType.LIST)  #, show_up=OutputParameterShowUpType.OPTIONAL)
        module.appendOutput(
            "nb_qym", '//div[@id="qufenkuang"]/table[1]/tr[3]/td[2]/text()',
            OutputType.LIST)  #, show_up=OutputParameterShowUpType.OPTIONAL)
        module.addEvent(
            Event(EventType.OUTPUT_NOT_SATISFIED,
                  retry_times=5))  #粗略检测年报信息有没有注册号和企业名(没有可能会因为访问太快,没数据回来)
        module.addEvent(Event(EventType.EXCEPTION_OCCURED, retry_times=5))
        module.addSleep(Sleep(2))
        module_super.appendSubModule(module, True)