Skip to content

Commit

Permalink
remove prefix from web-crawlser output
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Oct 8, 2024
1 parent de7e488 commit 505de7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_crawler/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run(self):
def _save_results(self):
print('SAVING INFORMATION')

with open(f'{BASE_DIR}/out/results_{safe_url_key(TARGET)}.json', 'w', encoding='utf-8') as f:
with open(f'{BASE_DIR}/out/{safe_url_key(TARGET)}.json', 'w', encoding='utf-8') as f:
f.write(json_dumps(self.results, indent=4))

@staticmethod
Expand Down

0 comments on commit 505de7f

Please sign in to comment.