Shreyas1441AI commited on
Commit
e033875
·
verified ·
1 Parent(s): f620ed2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ # Retrieve the saved code from environment variables
4
+ app_code = os.getenv("PI_3")
5
+
6
+ if not app_code:
7
+ raise ValueError("PI_3 is Missing!!!")
8
+
9
+ # Execute the code dynamically
10
+ exec(app_code)