├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── docs ├── poi_v2.sql ├── system.png └── urls.sql ├── preview ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── requirements.txt └── src ├── __init__.py ├── common ├── __init__.py ├── cache.py ├── chameleon.py ├── httper.py ├── models.py ├── pyecho.py └── utils.py ├── ctrl_citylist.py ├── ctrl_poidetail.py ├── ctrl_poilist.py ├── ctrl_portal.py ├── main_citylist.py ├── main_poidetail.py ├── main_poilist.py └── main_portal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/poi_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/docs/poi_v2.sql -------------------------------------------------------------------------------- /docs/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/docs/system.png -------------------------------------------------------------------------------- /docs/urls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/docs/urls.sql -------------------------------------------------------------------------------- /preview/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/1.png -------------------------------------------------------------------------------- /preview/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/10.png -------------------------------------------------------------------------------- /preview/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/11.png -------------------------------------------------------------------------------- /preview/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/12.png -------------------------------------------------------------------------------- /preview/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/13.png -------------------------------------------------------------------------------- /preview/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/2.png -------------------------------------------------------------------------------- /preview/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/3.png -------------------------------------------------------------------------------- /preview/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/4.png -------------------------------------------------------------------------------- /preview/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/5.png -------------------------------------------------------------------------------- /preview/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/6.png -------------------------------------------------------------------------------- /preview/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/7.png -------------------------------------------------------------------------------- /preview/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/8.png -------------------------------------------------------------------------------- /preview/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/preview/9.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/cache.py -------------------------------------------------------------------------------- /src/common/chameleon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/chameleon.py -------------------------------------------------------------------------------- /src/common/httper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/httper.py -------------------------------------------------------------------------------- /src/common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/models.py -------------------------------------------------------------------------------- /src/common/pyecho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/pyecho.py -------------------------------------------------------------------------------- /src/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/common/utils.py -------------------------------------------------------------------------------- /src/ctrl_citylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/ctrl_citylist.py -------------------------------------------------------------------------------- /src/ctrl_poidetail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/ctrl_poidetail.py -------------------------------------------------------------------------------- /src/ctrl_poilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/ctrl_poilist.py -------------------------------------------------------------------------------- /src/ctrl_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/ctrl_portal.py -------------------------------------------------------------------------------- /src/main_citylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/main_citylist.py -------------------------------------------------------------------------------- /src/main_poidetail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/main_poidetail.py -------------------------------------------------------------------------------- /src/main_poilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/main_poilist.py -------------------------------------------------------------------------------- /src/main_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xHJK/mafengwo-crawlers/HEAD/src/main_portal.py --------------------------------------------------------------------------------