import gradio as gr import datetime import asyncio def update_live_message(): """ 현재 시간과 'live' 메시지를 반환합니다. """ current_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') return f"{current_time} - live" async def periodic_update(interface, interval=60): """ 주어진 인터페이스에 1분 간격으로 업데이트를 실행합니다. """ while True: live_message = update_live_message() # Gradio 인터페이스 업데이트 interface(live_message) await asyncio.sleep(interval) def run_gradio(): """ Gradio 웹 인터페이스를 설정하고 실행합니다. """ with gr.Blocks() as demo: live_output = gr.Textbox(label="Live Output", value="Starting...", elem_id="live_output", interactive=False) async def live_update_task(): """ 비동기 작업 실행 """ while True: current_time = update_live_message() live_output.update(value=current_time) await asyncio.sleep(60) # Gradio 인터페이스 실행 시 이벤트 루프와 통합 demo.load(live_update_task) demo.launch(server_name="0.0.0.0", server_port=7860, inbrowser=True) if __name__ == "__main__": run_gradio()