diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 6ac5564..253c562 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -652,6 +652,20 @@ class DDNSProviderDDNSS(DDNSProvider): raise DDNSUpdateError +class DDNSProviderDeSEC(DDNSProtocolDynDNS2, DDNSProvider): + handle = "desec.io" + name = "desec.io" + website = "https://www.desec.io" + protocols = ("ipv4", "ipv6") + can_remove_records = False + + # ipv4 / ipv6 records are automatically removed when the update + # request originates from the respectively other protocol and no + # address is explicitly provided for the unused protocol. + + url = "https://update.dedyn.io" + + class DDNSProviderDHS(DDNSProvider): handle = "dhs.org" name = "DHS International"