├── .gitignore ├── ColorStreamHandler.py ├── LICENSE ├── README.md ├── data ├── crawler.sqlite └── emails.csv ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat └── logs └── pycrawler.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorStreamHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/ColorStreamHandler.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/README.md -------------------------------------------------------------------------------- /data/crawler.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/data/crawler.sqlite -------------------------------------------------------------------------------- /data/emails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/data/emails.csv -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /logs/pycrawler.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andripwn/crawler-python/HEAD/logs/pycrawler.log --------------------------------------------------------------------------------