OLD | NEW |
1 # This Source Code Form is subject to the terms of the Mozilla Public | 1 # This Source Code Form is subject to the terms of the Mozilla Public |
2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, | 2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, |
3 # You can obtain one at http://mozilla.org/MPL/2.0/. | 3 # You can obtain one at http://mozilla.org/MPL/2.0/. |
4 | 4 |
5 from scraper import * | 5 from . import cli |
| 6 |
| 7 from .factory import FactoryScraper |
| 8 |
| 9 from .scraper import (Scraper, |
| 10 DailyScraper, |
| 11 DirectScraper, |
| 12 ReleaseScraper, |
| 13 ReleaseCandidateScraper, |
| 14 TinderboxScraper, |
| 15 TryScraper, |
| 16 ) |
| 17 |
| 18 __all__ = [cli, |
| 19 FactoryScraper, |
| 20 Scraper, |
| 21 DailyScraper, |
| 22 DirectScraper, |
| 23 ReleaseScraper, |
| 24 ReleaseCandidateScraper, |
| 25 TinderboxScraper, |
| 26 TryScraper, |
| 27 ] |
OLD | NEW |