├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build.yml │ ├── deploy.yml │ └── package.yml ├── .gitignore ├── Dockerfile ├── README.md ├── deployment-comment.yml ├── deployment-single.yml ├── deployment-universal.yml ├── docker-compose.yml ├── requirements.txt ├── scrapy.cfg └── weibo ├── __init__.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders ├── __init__.py ├── comment.py ├── single.py └── universal.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/README.md -------------------------------------------------------------------------------- /deployment-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/deployment-comment.yml -------------------------------------------------------------------------------- /deployment-single.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/deployment-single.yml -------------------------------------------------------------------------------- /deployment-universal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/deployment-universal.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /weibo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weibo/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/items.py -------------------------------------------------------------------------------- /weibo/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/middlewares.py -------------------------------------------------------------------------------- /weibo/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/pipelines.py -------------------------------------------------------------------------------- /weibo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/settings.py -------------------------------------------------------------------------------- /weibo/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/spiders/__init__.py -------------------------------------------------------------------------------- /weibo/spiders/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/spiders/comment.py -------------------------------------------------------------------------------- /weibo/spiders/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/spiders/single.py -------------------------------------------------------------------------------- /weibo/spiders/universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python3WebSpider/WeiboCrawler/HEAD/weibo/spiders/universal.py --------------------------------------------------------------------------------