├── .gitignore ├── LICENSE ├── README.md ├── crawler.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/bitcointalkbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/bitcointalkbot/HEAD/README.md -------------------------------------------------------------------------------- /crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/bitcointalkbot/HEAD/crawler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorjOld/bitcointalkbot/HEAD/requirements.txt --------------------------------------------------------------------------------