How can I run a function indefinitely while the rest of the code is running?

Hello,
I am creating a Dashboard with a clock that should be seen permanently updated.
I have searched for information including sched, thread, etc. but I can’t find a way to do it, and searching on the internet I haven’t found anything that helps me either.
Does anyone know how to create this loop allowing the rest of the code to continue executing?

Thanks

Try with a st.fragment and passing a value to the run_every argument:

1 Like

Thanks for your help!
I did it as you indicated, use:
@st.fragment(run_every=“1s”)
Thanks again.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.