move json output into run_all

This commit is contained in:
Marc Nixon 2023-09-01 10:33:26 -07:00
parent 0c30535972
commit ba466810ef

View file

@ -19,10 +19,9 @@ def run_all(args: argparse.Namespace):
results.update(scraper.scrape())
print(results)
# Save the results to a JSON file
with open('results.json', 'w') as json_file:
json.dump(results, json_file, indent=4)
# Save the results to a JSON file
with open('results.json', 'w') as json_file:
json.dump(results, json_file, indent=4)
def import_scrapers():