I am writing an App which uses url queries to fetch parameters and, depending on the value of a parameter, imports a certain Python file for execution. This works well when first loaded; however, when any kind of action is taken inside the imported python file, the page goes blank.
Does anyone know what I am doing wrong?
import streamlit as st
authorised_apps = {'et': 'file-1', 'bc': 'file-2'}
query = st.experimental_get_query_params()
# st.write(query)
# check that app exists
if "app" in query:
# check that app is authorised
if query['app'][0] in authorised_apps:
# import the requested app
__import__(authorised_apps[str(query['app'][0])])
else:
st.error("The requested app is not authorised!")
else:
st.error("The query is not correct, it needs to contain the parameter 'app'.")