From a39daa5fcdadd9d83e7b207aac7cdf844581128a Mon Sep 17 00:00:00 2001 From: altf4arnold Date: Sun, 16 Jun 2024 00:07:56 +0200 Subject: [PATCH 1/2] [FIX] Fixing #75. New URL in link --- tldtest/templates/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldtest/templates/home.html b/tldtest/templates/home.html index 15f03ad..31d86f1 100644 --- a/tldtest/templates/home.html +++ b/tldtest/templates/home.html @@ -32,7 +32,7 @@ {% else %} {{ TLD.rdap }} {% endif %} - IPv4 IPv6 + IPv4 IPv6 Date: Sun, 16 Jun 2024 00:14:52 +0200 Subject: [PATCH 2/2] [FIX] Going around the rate-limiting of RIPE-NCC --- atlas/atlascreator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/atlas/atlascreator.py b/atlas/atlascreator.py index 0d7c15b..7d6637d 100644 --- a/atlas/atlascreator.py +++ b/atlas/atlascreator.py @@ -95,8 +95,10 @@ def main(): db = TLD.objects.get(tld=tld) unicodetlds.append(db.unicodetld) for tld in unicodetlds: - webrequest(tld, 4) - webrequest(tld, 6) + if db.atlasv4 is None: + webrequest(tld, 4) + if db.atlasv6 is None: + webrequest(tld, 6) if __name__ == "__main__":