On 2012-09-14, Xavier Combelle wrote:
> Le 14/09/2012 12:56, Dwight Hutto a ?crit :
>> service_num_list = [num for num in range(0,5)]
>> for service_num in service_num_list:
>> eval("web_service_call%i(%i)" % (service_num,service_num))
>>
>>
> service_num_list = [num for num in range(0,5)]
s
instead of
Le 14/09/2012 12:56, Dwight Hutto a écrit :
service_num_list = [num for num in range(0,5)]
for service_num in service_num_list:
eval("web_service_call%i(%i)" % (service_num,service_num))
service_num_list = [num for num in range(0,5)]
for service_num in service_num_list:
On 14Sep2012 10:53, Chicken McNuggets wrote:
| On 14/09/2012 03:31, Cameron Simpson wrote:
| > On 13Sep2012 19:34, Chicken McNuggets wrote:
| > | I'm writing a simple library that communicates with a web service and am
| > | wondering if there are any generally well regarded methods for batching
>> | The problem with most web services is that they require a list of
>> | sequential commands to be executed in a certain order to complete a
>> | given task (or at least the one I am using does) so having to manually
>> | call each command is a bit of a pain. How would you go about the design
>>
On 14/09/2012 03:31, Cameron Simpson wrote:
On 13Sep2012 19:34, Chicken McNuggets wrote:
| I'm writing a simple library that communicates with a web service and am
| wondering if there are any generally well regarded methods for batching
| HTTP requests?
|
| The problem with most web services is
On 13Sep2012 19:34, Chicken McNuggets wrote:
| I'm writing a simple library that communicates with a web service and am
| wondering if there are any generally well regarded methods for batching
| HTTP requests?
|
| The problem with most web services is that they require a list of
| sequential
I'm writing a simple library that communicates with a web service and am
wondering if there are any generally well regarded methods for batching
HTTP requests?
The problem with most web services is that they require a list of
sequential commands to be executed in a certain order to complete a