Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions hivemind_etl/mediawiki/wikiteam_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def crawl(self, api_url: str, dump_path: str) -> None:
else:
params.extend([f"--{key}", str(value)])

logging.info(f"Crawling mediawiki dump from {api_url} to {dump_path}")
logging.info(f"Parameters: {params}")

# Directly call the DumpGenerator static __init__ method which will parse these parameters,
# execute the dump generation process, and run through the rest of the workflow.
DumpGenerator(params)
Expand Down