From 0208772d37c18b72c41557e6f4af04c7448839b7 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 13:47:25 +0200 Subject: ovh soapi domainCapabilities: initial commit --- ovh/soapi/domainCapabilities | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/domainCapabilities (limited to 'ovh/soapi') diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities new file mode 100755 index 00000000..edce3f0d --- /dev/null +++ b/ovh/soapi/domainCapabilities @@ -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" + +#domainCapabilities +result = soap.domainCapabilities(session, 'krebsco.de') +print "domainCapabilities successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" -- cgit v1.2.3 From 93be79e976ffd53bcae2f6f9870a486e8fbd8b2d Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 13:52:46 +0200 Subject: ovh soapi domainList: initial commit --- ovh/soapi/domainList | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/domainList (limited to 'ovh/soapi') diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList new file mode 100755 index 00000000..3f829ebe --- /dev/null +++ b/ovh/soapi/domainList @@ -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" + +#domainHostList +result = soap.domainList(session) +print "domainList successfull" +pp = pprint.PrettyPrinter(indent=4) +pp.pprint(result) # your code here ... + +#logout +soap.logout(session) +print "logout successfull" -- cgit v1.2.3 From febfbe5c4f2e5481b12d0142c08dd45a28cbf4b1 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 14:58:14 +0200 Subject: ovh soapi zoneEntryList: initial commit --- ovh/soapi/zoneEntryList | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ovh/soapi/zoneEntryList (limited to 'ovh/soapi') 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" -- cgit v1.2.3 From 963b1ab3b05651afeec350e054a258595d067e26 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 22 Aug 2011 14:58:33 +0200 Subject: ovh soapi Makefile: initial commit Unfortunately the latest stable SOAPpy is broken, so we have to resort to the latest stable SOAPpy from SVN^_^ --- ovh/soapi/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ovh/soapi/Makefile (limited to 'ovh/soapi') diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile new file mode 100644 index 00000000..6a4a3a6b --- /dev/null +++ b/ovh/soapi/Makefile @@ -0,0 +1,25 @@ +.PHONY: all install +all: select-target + +exes := $(shell \ + find . -mindepth 1 -maxdepth 1 -type f -executable -exec basename \{\} \;) + +target_exes := $(addprefix ../../bin/,$(exes)) + +install: $(target_exes) + +../../bin/%: % SOAPpy + ln -vsnf ../ovh/soapi/$* $@ + +src: + mkdir $@ + +src/SOAPpy: src + cd $< && \ + svn co https://pywebsvcs.svn.sourceforge.net/svnroot/pywebsvcs/trunk/SOAPpy + +src/SOAPpy/build/lib/SOAPpy: src/SOAPpy + cd $< && python setup.py build + +SOAPpy: src/SOAPpy/build/lib/SOAPpy + ln -snf $< -- cgit v1.2.3