diff options
author | root <root@krebs> | 2011-08-22 15:13:34 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-22 15:13:34 +0200 |
commit | 77653ab3cb741537e475c2556b6c164b74657e99 (patch) | |
tree | d9cc3fd9b712082ff2572046d92dbdb532780f96 /ovh/soapi/zoneEntryList | |
parent | 2be46b6392bd35dabf850f92d0829b452296e12b (diff) | |
parent | 963b1ab3b05651afeec350e054a258595d067e26 (diff) |
Merge branch 'master' of github.com:/krebscode/painload
Diffstat (limited to 'ovh/soapi/zoneEntryList')
-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" |