├── .gitignore ├── README.md ├── config └── test.yaml ├── lib ├── config.py ├── logger.py └── user_pigeonhole.py ├── requirements.txt └── tool ├── _init_paths.py └── crawler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/README.md -------------------------------------------------------------------------------- /config/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/config/test.yaml -------------------------------------------------------------------------------- /lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/lib/config.py -------------------------------------------------------------------------------- /lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/lib/logger.py -------------------------------------------------------------------------------- /lib/user_pigeonhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/lib/user_pigeonhole.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | yacs>=0.1.5 2 | requests 3 | -------------------------------------------------------------------------------- /tool/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/tool/_init_paths.py -------------------------------------------------------------------------------- /tool/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyokoning/lofter_crawler/HEAD/tool/crawler.py --------------------------------------------------------------------------------