summaryrefslogtreecommitdiffstats
path: root/ovh/soapi/zoneEntryList
diff options
context:
space:
mode:
Diffstat (limited to 'ovh/soapi/zoneEntryList')
-rwxr-xr-xovh/soapi/zoneEntryList6
1 files changed, 0 insertions, 6 deletions
diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList
index eb9c9c09..00f56958 100755
--- a/ovh/soapi/zoneEntryList
+++ b/ovh/soapi/zoneEntryList
@@ -18,15 +18,9 @@ soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl')
username = environ['KREBS_OVH_USER']
password = environ['KREBS_OVH_PASS']
-#login
session = soap.login(username, password, 'de', 0)
-print "login successfull"
-#zoneEntryList
result = soap.zoneEntryList(session, 'krebsco.de')
-print "zoneEntryList successfull"
print dumps(result, sort_keys=True, indent=2, default=default)
-#logout
soap.logout(session)
-print "logout successfull"