Question

Does http caller works synchronously or asynchronously?

  • 5 July 2018
  • 1 reply
  • 1 view

Badge +5

I’m trying to access an API and extract data using python caller where I’m using url lib to get the response . Since it’ll in works synchronously the process takes time. Now I’m planning to use http caller and I need to know how it handles the requests? Is it synchronously or asynchronously?


1 reply

Userlevel 4

The HTTPCaller is synchronous, i.e. it will wait for the reply (or a timeout) before any output is produced.

In fact, the HTTPCaller is also based on curllib...

Reply