summaryrefslogtreecommitdiffstats
path: root/ovh/soapi/zoneEntryDel
blob: c8137fc199e03f7f64ea68bfd599f3f52d87e4e9 (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
29
30
31
32
33
#!/usr/bin/python

from os import environ
from os.path import dirname, realpath
from SOAPpy import WSDL
from sys import argv
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']
domain = argv[2]
subdomain = argv[3]
fieldtype = argv[4]
target = argv[5]

session = soap.login(username, password, 'de', 0)

result = soap.zoneEntryDel(session, domain, subdomain, fieldtype, target)
print dumps(result, sort_keys=True, indent=2, default=default)

soap.logout(session)