summaryrefslogtreecommitdiffstats
path: root/ovh
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-22 13:52:46 +0200
committertv <tv@xso>2011-08-22 13:52:46 +0200
commit93be79e976ffd53bcae2f6f9870a486e8fbd8b2d (patch)
treee384a1889a00a56d153d2c8140e262faf8386511 /ovh
parent0208772d37c18b72c41557e6f4af04c7448839b7 (diff)
ovh soapi domainList: initial commit
Diffstat (limited to 'ovh')
-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"