Skip to main content

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?

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