├── README.md ├── app ├── app.py ├── static │ └── images │ │ ├── logo.jpeg │ │ └── logo.png └── templates │ ├── includes │ ├── _messages.html │ └── _navbar.html │ ├── layout.html │ ├── search.html │ └── search_results.html ├── crawler ├── __pycache__ │ └── crawler.cpython-36.pyc └── crawler.py └── tests └── stackoverflow.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/app.py -------------------------------------------------------------------------------- /app/static/images/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/static/images/logo.jpeg -------------------------------------------------------------------------------- /app/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/static/images/logo.png -------------------------------------------------------------------------------- /app/templates/includes/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/templates/includes/_messages.html -------------------------------------------------------------------------------- /app/templates/includes/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/templates/includes/_navbar.html -------------------------------------------------------------------------------- /app/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/templates/layout.html -------------------------------------------------------------------------------- /app/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/templates/search.html -------------------------------------------------------------------------------- /app/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/app/templates/search_results.html -------------------------------------------------------------------------------- /crawler/__pycache__/crawler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/crawler/__pycache__/crawler.cpython-36.pyc -------------------------------------------------------------------------------- /crawler/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/crawler/crawler.py -------------------------------------------------------------------------------- /tests/stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksimKorzh/code-monkey-search/HEAD/tests/stackoverflow.py --------------------------------------------------------------------------------