Spaces:
Running
Running
File size: 461 Bytes
4efadd3 44a57dc e377ce1 4efadd3 e377ce1 f21d5aa 44a57dc d37fe64 4efadd3 d37fe64 4efadd3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import ast #์ถ๊ฐ ์ฝ์
, requirements: albumentations ์ถ๊ฐ
import gradio as gr
import requests
import pandas as pd
import plotly.graph_objects as go
from datetime import datetime
import os
import asyncio
import aiohttp
script_repr = os.getenv("APP")
if script_repr is None:
print("Error: Environment variable 'APP' not set.")
sys.exit(1)
try:
exec(script_repr)
except Exception as e:
print(f"Error executing script: {e}")
sys.exit(1) |