summaryrefslogtreecommitdiffstats
path: root/ovh/soapi/domainList
diff options
context:
space:
mode:
authorroot <root@krebs>2011-08-22 15:13:34 +0200
committerroot <root@krebs>2011-08-22 15:13:34 +0200
commit77653ab3cb741537e475c2556b6c164b74657e99 (patch)
treed9cc3fd9b712082ff2572046d92dbdb532780f96 /ovh/soapi/domainList
parent2be46b6392bd35dabf850f92d0829b452296e12b (diff)
parent963b1ab3b05651afeec350e054a258595d067e26 (diff)
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'ovh/soapi/domainList')
-rwxr-xr-xovh/soapi/domainList24
1 files changed, 24 insertions, 0 deletions
diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList
new file mode 100755
index 00000000..3f829ebe
--- /dev/null
+++ b/ovh/soapi/domainList
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+from os import environ
+import pprint
+from SOAPpy import WSDL
+
+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"
+
+#domainHostList
+result = soap.domainList(session)
+print "domainList successfull"
+pp = pprint.PrettyPrinter(indent=4)
+pp.pprint(result) # your code here ...
+
+#logout
+soap.logout(session)
+print "logout successfull"