Shreyas1441AI's picture
Create app.py
917857c verified
raw
history blame contribute delete
200 Bytes
import os
# Retrieve the saved code from environment variables
app_code = os.getenv("PI_7")
if not app_code:
raise ValueError("PI_7 is Missing!!!")
# Execute the code dynamically
exec(app_code)