├── .gitignore ├── README.md ├── img ├── progress.jpg └── start.jpg ├── spider.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.log 3 | test/* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leitro/knowsecSpider2/HEAD/README.md -------------------------------------------------------------------------------- /img/progress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leitro/knowsecSpider2/HEAD/img/progress.jpg -------------------------------------------------------------------------------- /img/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leitro/knowsecSpider2/HEAD/img/start.jpg -------------------------------------------------------------------------------- /spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leitro/knowsecSpider2/HEAD/spider.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leitro/knowsecSpider2/HEAD/test.py --------------------------------------------------------------------------------