Hello,
I’d like to know if the Ubidots Python API supports asynchronous programming and threading and what is the best way to implement such feature (whether create short lived threads, use aiohttp, etc).
I am trying to develop a people counter that needs to update the reading very frequently, ~1Hz, while the WiFi is laggy. As it is now the people detection algorithm halts for quite a while to wait for Ubidots library to update the variable, I’d like to decommission such task and make it asynchronous or completely separate it from the main loop in a separate thread.
Thank you