Fiz sortlists.py

This commit is contained in:
Sean Whalen
2025-08-19 20:23:55 -04:00
parent 4bbd97dbaa
commit 45d3dc3b2e
2 changed files with 2 additions and 1 deletions

View File

@@ -724,6 +724,7 @@ ip-51-89-240.eu,OVH,Web Host
ip-87-98-138.eu,OVH,Web Host
ip-92-204-129.us,OVH,Web Host
ip-92-204-134.us,OVH,Web Host
ip-92-204-134.us,OVH,Web Host
iphmx.com,Cisco Cloud Email Security (CES),Email Security
iphotel.net.br,IPHOTEL Hosped,Web Host
iphouse.net,Sandwich,Web Host
1 base_reverse_dns name type
724 ip-87-98-138.eu OVH Web Host
725 ip-92-204-129.us OVH Web Host
726 ip-92-204-134.us OVH Web Host
727 ip-92-204-134.us OVH Web Host
728 iphmx.com Cisco Cloud Email Security (CES) Email Security
729 iphotel.net.br IPHOTEL Hosped Web Host
730 iphouse.net Sandwich Web Host

View File

@@ -104,7 +104,7 @@ def sort_csv(
rows.sort(key=sort_key)
with path.open(filepath, "w", newline="") as outfile:
with open(filepath, "w", newline="") as outfile:
writer = csv.DictWriter(outfile, fieldnames=fieldnames)
writer.writeheader()
writer.writerows(rows)