File size: 326 Bytes
9184778 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
def detect_streamlit() -> bool:
try:
from streamlit.runtime.scriptrunner import get_script_run_ctx
if get_script_run_ctx() is not None:
return True
else:
return False
except ImportError:
return False
except Exception:
return False
|