I am writing my streamlit app and I do need to execute some stuff before starting streamlit, to do that I create another .py file that calls the homepage.py
, the code looks like this.
from streamlit.web import cli
from scripts import functions
if __name__ == "__main__":
functions.setup_default_config_file()
cli.main_run(["homepage.py"])
This works perfect, the problem is that now I see this Warning message.
WARNING streamlit.runtime.caching.cache_data_api: No runtime found, using MemoryCacheStorageManager
Is there a way to disable this message, or a better way to do what I want to do?