diff --git a/timesearch.py b/timesearch.py index 4cc945d..3cec939 100644 --- a/timesearch.py +++ b/timesearch.py @@ -6,7 +6,7 @@ logging.getLogger().addHandler(handler) import sys -import timesearch +import timesearch_modules -status_code = timesearch.main(sys.argv[1:]) +status_code = timesearch_modules.main(sys.argv[1:]) raise SystemExit(status_code) diff --git a/timesearch/__init__.py b/timesearch_modules/__init__.py similarity index 100% rename from timesearch/__init__.py rename to timesearch_modules/__init__.py diff --git a/timesearch/breakdown.py b/timesearch_modules/breakdown.py similarity index 100% rename from timesearch/breakdown.py rename to timesearch_modules/breakdown.py diff --git a/timesearch/commentaugment.py b/timesearch_modules/commentaugment.py similarity index 100% rename from timesearch/commentaugment.py rename to timesearch_modules/commentaugment.py diff --git a/timesearch/common.py b/timesearch_modules/common.py similarity index 100% rename from timesearch/common.py rename to timesearch_modules/common.py diff --git a/timesearch/exceptions.py b/timesearch_modules/exceptions.py similarity index 100% rename from timesearch/exceptions.py rename to timesearch_modules/exceptions.py diff --git a/timesearch/getstyles.py b/timesearch_modules/getstyles.py similarity index 100% rename from timesearch/getstyles.py rename to timesearch_modules/getstyles.py diff --git a/timesearch/getwiki.py b/timesearch_modules/getwiki.py similarity index 100% rename from timesearch/getwiki.py rename to timesearch_modules/getwiki.py diff --git a/timesearch/livestream.py b/timesearch_modules/livestream.py similarity index 100% rename from timesearch/livestream.py rename to timesearch_modules/livestream.py diff --git a/timesearch/mergedb.py b/timesearch_modules/mergedb.py similarity index 100% rename from timesearch/mergedb.py rename to timesearch_modules/mergedb.py diff --git a/timesearch/offline_reading.py b/timesearch_modules/offline_reading.py similarity index 100% rename from timesearch/offline_reading.py rename to timesearch_modules/offline_reading.py diff --git a/timesearch/pushshift.py b/timesearch_modules/pushshift.py similarity index 100% rename from timesearch/pushshift.py rename to timesearch_modules/pushshift.py diff --git a/timesearch/redmash.py b/timesearch_modules/redmash.py similarity index 100% rename from timesearch/redmash.py rename to timesearch_modules/redmash.py diff --git a/timesearch/timesearch.py b/timesearch_modules/timesearch.py similarity index 100% rename from timesearch/timesearch.py rename to timesearch_modules/timesearch.py diff --git a/timesearch/tsdb.py b/timesearch_modules/tsdb.py similarity index 100% rename from timesearch/tsdb.py rename to timesearch_modules/tsdb.py