Spaces:
Runtime error
Runtime error
Update web.py
Browse files
web.py
CHANGED
|
@@ -3,34 +3,26 @@ import datetime
|
|
| 3 |
import asyncio
|
| 4 |
|
| 5 |
def update_live_message():
|
| 6 |
-
""" ํ์ฌ ์๊ฐ๊ณผ 'live' ๋ฉ์์ง๋ฅผ ๋ฐํํฉ๋๋ค. """
|
| 7 |
current_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
|
| 8 |
return f"{current_time} - live"
|
| 9 |
|
| 10 |
async def periodic_update(interface, interval=60):
|
| 11 |
-
""" ์ฃผ์ด์ง ์ธํฐํ์ด์ค์ 1๋ถ ๊ฐ๊ฒฉ์ผ๋ก ์
๋ฐ์ดํธ๋ฅผ ์คํํฉ๋๋ค. """
|
| 12 |
while True:
|
| 13 |
live_message = update_live_message()
|
| 14 |
-
interface.update(value=live_message)
|
| 15 |
await asyncio.sleep(interval)
|
| 16 |
|
| 17 |
def run_gradio():
|
| 18 |
-
""" Gradio ์น ์ธํฐํ์ด์ค๋ฅผ ์ค์ ํ๊ณ ์คํํฉ๋๋ค. """
|
| 19 |
live_block = gr.Textbox(label="Live Output", value="Starting...", elem_id="live_output")
|
| 20 |
-
|
| 21 |
demo = gr.Blocks()
|
| 22 |
|
| 23 |
with demo:
|
| 24 |
gr.Markdown("## Live Server Output")
|
| 25 |
live_block
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
task = loop.create_task(periodic_update(live_block))
|
| 31 |
-
|
| 32 |
-
demo.launch(server_name="0.0.0.0", server_port=7860, inbrowser=True, enable_queue=True)
|
| 33 |
-
loop.run_until_complete(task)
|
| 34 |
|
| 35 |
if __name__ == "__main__":
|
| 36 |
run_gradio()
|
|
|
|
| 3 |
import asyncio
|
| 4 |
|
| 5 |
def update_live_message():
|
|
|
|
| 6 |
current_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
|
| 7 |
return f"{current_time} - live"
|
| 8 |
|
| 9 |
async def periodic_update(interface, interval=60):
|
|
|
|
| 10 |
while True:
|
| 11 |
live_message = update_live_message()
|
| 12 |
+
interface.update(value=live_message)
|
| 13 |
await asyncio.sleep(interval)
|
| 14 |
|
| 15 |
def run_gradio():
|
|
|
|
| 16 |
live_block = gr.Textbox(label="Live Output", value="Starting...", elem_id="live_output")
|
|
|
|
| 17 |
demo = gr.Blocks()
|
| 18 |
|
| 19 |
with demo:
|
| 20 |
gr.Markdown("## Live Server Output")
|
| 21 |
live_block
|
| 22 |
|
| 23 |
+
asyncio.run(periodic_update(live_block))
|
| 24 |
+
|
| 25 |
+
demo.launch(server_name="0.0.0.0", debug=True, enable_queue=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
if __name__ == "__main__":
|
| 28 |
run_gradio()
|