diff options
author | tv <tv@xso> | 2011-08-22 16:06:13 +0200 |
---|---|---|
committer | tv <tv@xso> | 2011-08-22 16:07:20 +0200 |
commit | ee2d8ddd94e097106e8ebabd906afc82e4e7c63c (patch) | |
tree | d952eee7203de77ef048c5348ea12b80bd94645f /ovh/soapi/zoneEntryList | |
parent | 4186e40734ae9cf8ab20437b70d09eeae23399c4 (diff) |
ovh soapi *: use local wsdl copy
Diffstat (limited to 'ovh/soapi/zoneEntryList')
-rwxr-xr-x | ovh/soapi/zoneEntryList | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList index 00f56958..af37c112 100755 --- a/ovh/soapi/zoneEntryList +++ b/ovh/soapi/zoneEntryList @@ -1,6 +1,7 @@ #!/usr/bin/python from os import environ +from os.path import dirname, realpath from SOAPpy import WSDL from json import dumps, JSONEncoder @@ -13,7 +14,8 @@ def default(o): return list(iterable) return JSONEncoder.default(o) -soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) username = environ['KREBS_OVH_USER'] password = environ['KREBS_OVH_PASS'] |