Batching HTTP requests with httplib (Python 2.7)
Neil Cerutti
neilc at norwich.edu
Tue Sep 18 08:40:13 EDT 2012
More information about the Python-list mailing list
Tue Sep 18 08:40:13 EDT 2012
- Previous message (by thread): Batching HTTP requests with httplib (Python 2.7)
- Next message (by thread): Batching HTTP requests with httplib (Python 2.7)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 2012-09-14, Xavier Combelle <xavier.combelle at free.fr> 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)] service_num_list = list(range(5)) -- Neil Cerutti
- Previous message (by thread): Batching HTTP requests with httplib (Python 2.7)
- Next message (by thread): Batching HTTP requests with httplib (Python 2.7)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list