llamameta's picture
Update app.py
776855c verified
raw
history blame contribute delete
535 Bytes
import os
import sys
import streamlit as st
import ast
# Mendapatkan isi script dari environment variable
script_repr = os.getenv("MY_SCRIPT_CONTENT")
if script_repr is None:
st.error("Environment variable 'MY_SCRIPT_CONTENT' not set.")
sys.exit(1)
# Mengevaluasi string literal dengan aman
try:
script_content = ast.literal_eval(script_repr)
except (ValueError, SyntaxError) as e:
st.error(f"Error evaluating script from environment variable: {e}")
sys.exit(1)
# Menjalankan script dinamis
exec(script_content)