[FIX] Going around the rate-limiting of RIPE-NCC

This commit is contained in:
Arnold Dechamps 2024-06-16 00:14:52 +02:00
parent a39daa5fcd
commit 515d8d3ebc
No known key found for this signature in database
GPG key ID: AE66543374E41C89

View file

@ -95,8 +95,10 @@ def main():
db = TLD.objects.get(tld=tld) db = TLD.objects.get(tld=tld)
unicodetlds.append(db.unicodetld) unicodetlds.append(db.unicodetld)
for tld in unicodetlds: for tld in unicodetlds:
webrequest(tld, 4) if db.atlasv4 is None:
webrequest(tld, 6) webrequest(tld, 4)
if db.atlasv6 is None:
webrequest(tld, 6)
if __name__ == "__main__": if __name__ == "__main__":