You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently reviewing if we should use this Python SDK or go for bare HTTP calls (in a Python enviroment).
While the SDK has many advantages the major disadvantage we see is that all methods seem to be synchronous.
Given that this is just a wrapper around the HTTP API calls using requests this will cause blocking invocations because of the IO nature of HTTP which isn't great for performance.
Are there any plans to implement async methods or create an async version of this SDK?
The text was updated successfully, but these errors were encountered:
Hi @wimvc1,
we were considering providing Python SDK with async operations using aiohttp library. However we don't know if this is going to be incorporated into existing SDK or would we provide a new async SDK. Also timeline is not clear, but for sure it won't be available in the near future.
Best, @lukaszsocha2
Hi,
We are currently reviewing if we should use this Python SDK or go for bare HTTP calls (in a Python enviroment).
While the SDK has many advantages the major disadvantage we see is that all methods seem to be synchronous.
Given that this is just a wrapper around the HTTP API calls using
requests
this will cause blocking invocations because of the IO nature of HTTP which isn't great for performance.Are there any plans to implement
async
methods or create anasync
version of this SDK?The text was updated successfully, but these errors were encountered: