Index: mozdownload/__init__.py |
diff --git a/mozdownload/__init__.py b/mozdownload/__init__.py |
index 604bfe41ca52568550378d6cdb9383cab72c868d..114cd2331ffba1d968d0f7f5aa55e348b6c184a7 100644 |
--- a/mozdownload/__init__.py |
+++ b/mozdownload/__init__.py |
@@ -2,4 +2,26 @@ |
# License, v. 2.0. If a copy of the MPL was not distributed with this file, |
# You can obtain one at http://mozilla.org/MPL/2.0/. |
-from scraper import * |
+from . import cli |
+ |
+from .factory import FactoryScraper |
+ |
+from .scraper import (Scraper, |
+ DailyScraper, |
+ DirectScraper, |
+ ReleaseScraper, |
+ ReleaseCandidateScraper, |
+ TinderboxScraper, |
+ TryScraper, |
+ ) |
+ |
+__all__ = [cli, |
+ FactoryScraper, |
+ Scraper, |
+ DailyScraper, |
+ DirectScraper, |
+ ReleaseScraper, |
+ ReleaseCandidateScraper, |
+ TinderboxScraper, |
+ TryScraper, |
+ ] |