├── .gitignore ├── LaGou ├── LaGouSpiderProject │ ├── Util │ │ ├── WordCloud.py │ │ ├── __init__.py │ │ ├── bloomfilter.py │ │ ├── common.py │ │ ├── lagou_job.txt │ │ ├── python_creater.jpg │ │ ├── stopwords │ │ ├── text.txt │ │ └── wordCount.txt │ ├── WebServer │ │ ├── WebConfig.py │ │ ├── WebServer.py │ │ ├── __init__.py │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ └── views.py │ │ ├── exts.py │ │ ├── model.py │ │ └── templates │ │ │ └── admin │ │ │ ├── index.html │ │ │ └── login.html │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── LGSpider.py │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── data.json │ │ └── startsipder.py ├── Manager.py ├── __init__.py └── scrapy.cfg ├── README.md └── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── index.html └── login.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/.gitignore -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/WordCloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/WordCloud.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/bloomfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/bloomfilter.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/common.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/lagou_job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/lagou_job.txt -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/python_creater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/python_creater.jpg -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/stopwords -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/text.txt -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/Util/wordCount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/Util/wordCount.txt -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/WebConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/WebConfig.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/WebServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/WebServer.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/admin/__init__.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/admin/forms.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/admin/views.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/exts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/exts.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/model.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/templates/admin/index.html -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/WebServer/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/WebServer/templates/admin/login.html -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/items.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/middlewares.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/pipelines.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/settings.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/spiders/LGSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/spiders/LGSpider.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/spiders/__init__.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/spiders/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/spiders/cache.py -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/spiders/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/spiders/data.json -------------------------------------------------------------------------------- /LaGou/LaGouSpiderProject/spiders/startsipder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/LaGouSpiderProject/spiders/startsipder.py -------------------------------------------------------------------------------- /LaGou/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/Manager.py -------------------------------------------------------------------------------- /LaGou/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LaGou/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/LaGou/scrapy.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceJu/LaGou-Distributed-Spider-Flask/HEAD/docs/login.md --------------------------------------------------------------------------------