Sort the content case-insensitively before dumping to JSON

This commit is contained in:
Ivan Sagalaev 2024-10-17 21:08:43 -04:00 committed by GitHub
parent b1491d2694
commit 7bb5efd462
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,4 +70,6 @@ for section in soup.find_all("div", {"class": "agent-links-section"}):
}
print(f"Total: {len(existing_content)}")
Path("./robots.json").write_text(json.dumps(existing_content, indent=4, sort_keys=True))
sorted_keys = sorted(existing_content, key=lambda k: k.lower())
existing_content = {k: existing_content[k] for k in sorted_keys}
Path("./robots.json").write_text(json.dumps(existing_content, indent=4))