Re: [BangPypers] Asynchronous method calls in python

2014-11-23 Thread Okan bhan
Hi, I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. Have you explored Appengine Task Queues? Hi Sriram, I had a look on task queues but don't think that was for my issue. I

Re: [BangPypers] Asynchronous method calls in python

2014-11-21 Thread Sriram Karra
On Fri, Oct 10, 2014 at 2:06 PM, Okan bhan rajalo...@gmail.com wrote: Hi, I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. Have you explored Appengine Task Queues?

Re: [BangPypers] Asynchronous method calls in python

2014-10-16 Thread Pradip Caulagi
On Friday 10 October 2014 02:06 PM, Okan bhan wrote: Hi, I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. So I was hoping what should be the best way to make these method calls

Re: [BangPypers] Asynchronous method calls in python

2014-10-16 Thread Vipin Nair
I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. So I was hoping what should be the best way to make these method calls asynchronously. Whatever I know: I have used grequests[1] in the

Re: [BangPypers] Asynchronous method calls in python

2014-10-16 Thread Okan bhan
Thanks everyone for answers. I'm looking into these options. Thanks again. Regards Alok ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

[BangPypers] Asynchronous method calls in python

2014-10-10 Thread Okan bhan
Hi, I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. So I was hoping what should be the best way to make these method calls asynchronously. Whatever I know: * *Using multi-threading in

Re: [BangPypers] Asynchronous method calls in python

2014-10-10 Thread Anand Chitipothu
On Fri, Oct 10, 2014 at 2:06 PM, Okan bhan rajalo...@gmail.com wrote: Hi, I'm working on an appengine + flask application which makes multiple requests to third party APIs as part of one request. All of these are independent. So I was hoping what should be the best way to make these method