Skip to main content
Question

Does http caller works synchronously or asynchronously?

  • July 5, 2018
  • 1 reply
  • 14 views

raaaju1990
Contributor
Forum|alt.badge.img+9

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?

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

david_r
Celebrity
  • July 5, 2018

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...