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