web-services

Best way to create a simple python web service

Best way to create a simple python web service Question: I’ve been using python for years, but I have little experience with python web programming. I’d like to create a very simple web service that exposes some functionality from an existing python script for use within my company. It will likely return the results in …

Total answers: 9

How to limit rate of requests to web services in Python?

How to limit rate of requests to web services in Python? Question: I’m working on a Python library that interfaces with a web service API. Like many web services I’ve encountered, this one requests limiting the rate of requests. I would like to provide an optional parameter, limit, to the class instantiation that, if provided, …

Total answers: 6

How to write a Web Service for Google App Engine?

How to write a Web Service for Google App Engine? Question: I am really new to Python and I have been looking for an example on how to write a Web Service (XML – SOAP) in Python with Google App Engine with no luck. Can anyone point me to an article or give me an …

Total answers: 5

Public free web services for testing soap client

Public free web services for testing soap client Question: Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)? So far, it appears to me that Google Web API may be the only option. Otherwise, how can one test a SOAP …

Total answers: 1

How do you access an authenticated Google App Engine service from a (non-web) python client?

How do you access an authenticated Google App Engine service from a (non-web) python client? Question: I have a Google App Engine app – http://mylovelyapp.appspot.com/ It has a page – mylovelypage For the moment, the page just does self.response.out.write(‘OK’) If I run the following Python at my computer: import urllib2 f = urllib2.urlopen(“http://mylovelyapp.appspot.com/mylovelypage”) s = …

Total answers: 5