├── .gitignore ├── .idea ├── dataSources.xml ├── misc.xml ├── modules.xml ├── qichacha.iml ├── vcs.xml └── workspace.xml ├── README.md ├── doc ├── __init__.py ├── city ├── company_list └── keywords ├── parse ├── __init__.py ├── com_basic │ ├── __init__.py │ ├── qcc_base_init.py │ ├── qcc_base_new.py │ ├── qcc_base_parse.py │ ├── qcc_base_sql.py │ └── qcc_kw_search.py ├── com_common │ ├── __init__.py │ └── common.py ├── com_expand │ ├── qcc_cpr_of_soft.py │ ├── qcc_cpr_of_works.py │ ├── qcc_credit │ │ ├── __init__.py │ │ ├── qcc_credit_adm_license.py │ │ ├── qcc_credit_breach_of_faith_execued.py │ │ └── qcc_credit_execued.py │ ├── qcc_main_member.py │ ├── qcc_patent.py │ ├── qcc_recruit.py │ ├── qcc_recruit_new.py │ ├── qcc_stockholder.py │ ├── qcc_trademark.py │ └── qcc_web.py └── qcc_credit │ └── qcc_credit.py ├── start.py ├── support ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── cookies.cpython-36.pyc │ ├── headers.cpython-36.pyc │ ├── mysql.cpython-36.pyc │ └── others.cpython-36.pyc ├── cookies.py ├── headers.py ├── others.py ├── proxy.py └── use_mysql.py └── test ├── __init__.py ├── bddt ├── detail ├── temp ├── test.html ├── test_chaopin.py └── zhixing.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/qichacha.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/qichacha.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/README.md -------------------------------------------------------------------------------- /doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/doc/__init__.py -------------------------------------------------------------------------------- /doc/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/doc/city -------------------------------------------------------------------------------- /doc/company_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/doc/company_list -------------------------------------------------------------------------------- /doc/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/doc/keywords -------------------------------------------------------------------------------- /parse/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python3 2 | # -*- coding:utf-8 -*- 3 | """ 4 | 采集代码,解析页面信息 5 | """ -------------------------------------------------------------------------------- /parse/com_basic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/__init__.py -------------------------------------------------------------------------------- /parse/com_basic/qcc_base_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/qcc_base_init.py -------------------------------------------------------------------------------- /parse/com_basic/qcc_base_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/qcc_base_new.py -------------------------------------------------------------------------------- /parse/com_basic/qcc_base_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/qcc_base_parse.py -------------------------------------------------------------------------------- /parse/com_basic/qcc_base_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/qcc_base_sql.py -------------------------------------------------------------------------------- /parse/com_basic/qcc_kw_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_basic/qcc_kw_search.py -------------------------------------------------------------------------------- /parse/com_common/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python3 2 | 3 | """ 4 | 公共方法 5 | """ -------------------------------------------------------------------------------- /parse/com_common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_common/common.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_cpr_of_soft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_cpr_of_soft.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_cpr_of_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_cpr_of_works.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_credit/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python3 2 | # -*- coding:utf-8 -*- -------------------------------------------------------------------------------- /parse/com_expand/qcc_credit/qcc_credit_adm_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_credit/qcc_credit_adm_license.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_credit/qcc_credit_breach_of_faith_execued.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_credit/qcc_credit_breach_of_faith_execued.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_credit/qcc_credit_execued.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_credit/qcc_credit_execued.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_main_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_main_member.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_patent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_patent.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_recruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_recruit.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_recruit_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_recruit_new.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_stockholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_stockholder.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_trademark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_trademark.py -------------------------------------------------------------------------------- /parse/com_expand/qcc_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/com_expand/qcc_web.py -------------------------------------------------------------------------------- /parse/qcc_credit/qcc_credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/parse/qcc_credit/qcc_credit.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/start.py -------------------------------------------------------------------------------- /support/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python3 2 | # -*- coding:utf-8 -*- 3 | """ 4 | 该项目所需的其它支持条件,公共参数等 5 | 如: 6 | 通用请求头 7 | cookies 8 | 数据库相关事务操作 9 | etc... 10 | """ -------------------------------------------------------------------------------- /support/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /support/__pycache__/cookies.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/__pycache__/cookies.cpython-36.pyc -------------------------------------------------------------------------------- /support/__pycache__/headers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/__pycache__/headers.cpython-36.pyc -------------------------------------------------------------------------------- /support/__pycache__/mysql.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/__pycache__/mysql.cpython-36.pyc -------------------------------------------------------------------------------- /support/__pycache__/others.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/__pycache__/others.cpython-36.pyc -------------------------------------------------------------------------------- /support/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/cookies.py -------------------------------------------------------------------------------- /support/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/headers.py -------------------------------------------------------------------------------- /support/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/others.py -------------------------------------------------------------------------------- /support/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/proxy.py -------------------------------------------------------------------------------- /support/use_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/support/use_mysql.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/bddt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/bddt -------------------------------------------------------------------------------- /test/detail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/detail -------------------------------------------------------------------------------- /test/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/temp -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test_chaopin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/test_chaopin.py -------------------------------------------------------------------------------- /test/zhixing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CooperMin/qichacha/HEAD/test/zhixing.html --------------------------------------------------------------------------------