Hi,
I’d like to build an app which gets the data from the server for each change in selector.
so they select another value, and then you go and get the data.
Is there any data / api layer already existing to do this? I don’t like the idea that the whole dataset is loaded up front!
Yes, you can do the behavior you describe. You don’t have to load an entire dataset up front. The behavior you are describing sounds like one where you’d query a database or similar to get values as they change.
To avoid thrashing the database, you would want to use our caching decorator @st.cache to save the results of your queries, so that 2 or more runs with the same input arguments loads the data from RAM instead of re-running the same query over and over.