weathercouldy
weathercouldy

Reputation: 13

Python Dash timer?

I am building a web application that grabs data from SQL server every day. I have been using the Interval component so far. However, this time I want to get data at the point when I want. For example, 3 pm and 7 pm. Is there a way of setting a certain update time instead of giving an interval?

Thank you!

Upvotes: 0

Views: 686

Answers (1)

emher
emher

Reputation: 6024

You could schedule the grab using the underlying Flask server as discussed here. However, you would still need the Interval component to update the UI.

Upvotes: 1

Related Questions