add datetime_handler
This commit is contained in:
parent
ba466810ef
commit
c146dbb674
1 changed files with 8 additions and 6 deletions
|
@ -6,12 +6,10 @@ from pathlib import Path
|
|||
|
||||
SCRAPERS = {}
|
||||
|
||||
|
||||
def register_scraper(cls):
|
||||
SCRAPERS[cls.__name__] = cls
|
||||
return cls
|
||||
|
||||
|
||||
def run_all(args: argparse.Namespace):
|
||||
results = {}
|
||||
for scraper_cls in SCRAPERS.values():
|
||||
|
@ -19,12 +17,16 @@ 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)
|
||||
def datetime_handler(obj):
|
||||
if isinstance(obj, datetime.datetime):
|
||||
return obj.isoformat()
|
||||
raise TypeError("Unknown type")
|
||||
|
||||
# Save the results to a JSON file
|
||||
with open('results.json', 'w') as json_file:
|
||||
json.dump(results, json_file, indent=4, default=datetime_handler)
|
||||
|
||||
def import_scrapers():
|
||||
directory = Path(__file__).resolve().parent / "scrapers"
|
||||
for module_loader, name, ispkg in pkgutil.iter_modules([directory]):
|
||||
importlib.import_module(f".scrapers.{name}", __package__)
|
||||
importlib.import_module(f".scrapers.{name}", __package__)
|
||||
|
|
Loading…
Reference in a new issue