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 | 44a3b4f5cec7c77c906d913116701c7ec4b8bc6c (patch) | |
tree | 25d0b48c972447f22588a9f57f2afd621f95e334 /ovh/soapi/domainList | |
parent | e036c795201a3eea50ec6d966ef4118c173f5189 (diff) |
ovh soapi *: use local wsdl copy
Diffstat (limited to 'ovh/soapi/domainList')
-rwxr-xr-x | ovh/soapi/domainList | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList index b089f6a4..342eec72 100755 --- a/ovh/soapi/domainList +++ b/ovh/soapi/domainList @@ -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'] |