diff options
author | tv <tv@xso> | 2011-08-22 14:58:14 +0200 |
---|---|---|
committer | tv <tv@xso> | 2011-08-22 14:58:14 +0200 |
commit | 846d579ca352014ba10f9b51ba66672cfcb90540 (patch) | |
tree | c630478e078730efd786e8706589df14b296459a /ovh | |
parent | f2e027099e77a0f97287b96df0b95a2a3066d3e8 (diff) |
ovh soapi zoneEntryList: initial commit
Diffstat (limited to 'ovh')
-rwxr-xr-x | ovh/soapi/zoneEntryList | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList new file mode 100755 index 00000000..7c032462 --- /dev/null +++ b/ovh/soapi/zoneEntryList @@ -0,0 +1,24 @@ +#!/usr/bin/python + +from os import environ +import pprint +from SOAPpy import WSDL + +soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +#login +session = soap.login(username, password, 'de', 0) +print "login successfull" + +#zoneEntryList +result = soap.zoneEntryList(session, 'krebsco.de') +print "zoneEntryList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" |