summaryrefslogtreecommitdiffstats
path: root/ovh
diff options
context:
space:
mode:
authortv <tv@xso>2011-08-22 16:11:45 +0200
committertv <tv@xso>2011-08-22 16:11:45 +0200
commit329a7e216e81c159656c804b63da60f68df870f5 (patch)
tree9f98ac622b66bc63a9d8d86a3144ca1188c12a64 /ovh
parent575d08570e80952b3a95436a14787cc68a9f789b (diff)
ovh soapi domainInfo: initial commit
Diffstat (limited to 'ovh')
-rwxr-xr-xovh/soapi/domainInfo28
1 files changed, 28 insertions, 0 deletions
diff --git a/ovh/soapi/domainInfo b/ovh/soapi/domainInfo
new file mode 100755
index 00000000..e32262e1
--- /dev/null
+++ b/ovh/soapi/domainInfo
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+
+from os import environ
+from os.path import dirname, realpath
+from SOAPpy import WSDL
+from json import dumps, JSONEncoder
+
+def default(o):
+ try:
+ iterable = iter(o)
+ except TypeError:
+ pass
+ else:
+ return list(iterable)
+ return JSONEncoder.default(o)
+
+wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl'
+soap = WSDL.Proxy(wsdl)
+
+username = environ['KREBS_OVH_USER']
+password = environ['KREBS_OVH_PASS']
+
+session = soap.login(username, password, 'de', 0)
+
+result = soap.domainInfo(session, 'krebsco.de')
+print dumps(result, sort_keys=True, indent=2, default=default)
+
+soap.logout(session)