move json output into run_all
This commit is contained in:
parent
0c30535972
commit
ba466810ef
1 changed files with 4 additions and 5 deletions
|
@ -19,12 +19,11 @@ def run_all(args: argparse.Namespace):
|
||||||
results.update(scraper.scrape())
|
results.update(scraper.scrape())
|
||||||
print(results)
|
print(results)
|
||||||
|
|
||||||
# Save the results to a JSON file
|
# Save the results to a JSON file
|
||||||
with open('results.json', 'w') as json_file:
|
with open('results.json', 'w') as json_file:
|
||||||
json.dump(results, json_file, indent=4)
|
json.dump(results, json_file, indent=4)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def import_scrapers():
|
def import_scrapers():
|
||||||
directory = Path(__file__).resolve().parent / "scrapers"
|
directory = Path(__file__).resolve().parent / "scrapers"
|
||||||
for module_loader, name, ispkg in pkgutil.iter_modules([directory]):
|
for module_loader, name, ispkg in pkgutil.iter_modules([directory]):
|
||||||
|
|
Loading…
Reference in a new issue