Is it possible to displays live information in h2o apps like what we have in scripts? #1076
Answered
by
mturoci
mortezaomidi24
asked this question in
Q&A
-
Hi |
Beta Was this translation helpful? Give feedback.
Answered by
mturoci
Oct 19, 2021
Replies: 1 comment 5 replies
-
Hi @mortezaomidi24. The mechanism for periodic data updates is same for apps and scripts. Our |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
mortezaomidi24
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mortezaomidi24.
The mechanism for periodic data updates is same for apps and scripts. Our
dashboard
example uses a simple infinite loop withtime.sleep
. The same can be used for Wave apps, but in a real-world scenario you might want to run the periodic part in a separate python thread instead.