summaryrefslogtreecommitdiffstats
path: root/ext/ovh/soapi/domainList
blob: 342eec726d6125441be3eb462e89c49b712e8553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.domainList(session)
print dumps(result, sort_keys=True, indent=2, default=default)

soap.logout(session)