├── .gitignore ├── LICENSE ├── README.md ├── config ├── __init__.py └── settings.py ├── db ├── __init__.py ├── data.sql ├── models.py └── mysql_connector.py ├── qichacha.py ├── qichacha ├── __init__.py ├── client.py ├── crawler.py └── manager.py ├── requirements.txt ├── tianyancha.py ├── tianyancha ├── __init__.py ├── client.py ├── crawler.py └── tyc_rest_api.py └── util ├── __init__.py ├── date.py ├── httpclient.py ├── log.py └── wechat_auth.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/config/settings.py -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/db/__init__.py -------------------------------------------------------------------------------- /db/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/db/data.sql -------------------------------------------------------------------------------- /db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/db/models.py -------------------------------------------------------------------------------- /db/mysql_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/db/mysql_connector.py -------------------------------------------------------------------------------- /qichacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/qichacha.py -------------------------------------------------------------------------------- /qichacha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/qichacha/__init__.py -------------------------------------------------------------------------------- /qichacha/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/qichacha/client.py -------------------------------------------------------------------------------- /qichacha/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/qichacha/crawler.py -------------------------------------------------------------------------------- /qichacha/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/qichacha/manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | chardet 3 | DBUtils 4 | idna 5 | PyMySQL 6 | redis 7 | requests 8 | urllib3 9 | uplink -------------------------------------------------------------------------------- /tianyancha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/tianyancha.py -------------------------------------------------------------------------------- /tianyancha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/tianyancha/__init__.py -------------------------------------------------------------------------------- /tianyancha/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/tianyancha/client.py -------------------------------------------------------------------------------- /tianyancha/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/tianyancha/crawler.py -------------------------------------------------------------------------------- /tianyancha/tyc_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/tianyancha/tyc_rest_api.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/util/__init__.py -------------------------------------------------------------------------------- /util/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/util/date.py -------------------------------------------------------------------------------- /util/httpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/util/httpclient.py -------------------------------------------------------------------------------- /util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/util/log.py -------------------------------------------------------------------------------- /util/wechat_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouxin/company-crawler/HEAD/util/wechat_auth.py --------------------------------------------------------------------------------