diff --git a/bitshift/crawler/crawl.py b/bitshift/crawler/crawl.py index c121866..b91fc95 100644 --- a/bitshift/crawler/crawl.py +++ b/bitshift/crawler/crawl.py @@ -7,6 +7,7 @@ Contains functions for initializing all subsidiary, threaded crawlers. import logging, logging.handlers, os, Queue from bitshift.crawler import crawler, indexer +from bitshift.parser import parse, start_parse_servers __all__ = ["crawl"] @@ -32,6 +33,8 @@ def crawl(): for thread in threads: thread.start() + parse_servers = start_parse_servers() + def _configure_logging(): # This isn't ideal, since it means the bitshift python package must be kept # inside the app, but it works for now: