Spaces:
Runtime error
Runtime error
Update web.py
Browse files
web.py
CHANGED
@@ -1,33 +1,48 @@
|
|
1 |
import gradio as gr
|
2 |
import datetime
|
3 |
import asyncio
|
|
|
|
|
|
|
|
|
4 |
|
5 |
def update_live_message():
|
6 |
-
"""
|
|
|
|
|
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 |
-
"""
|
|
|
|
|
12 |
while True:
|
13 |
live_message = update_live_message()
|
14 |
interface.update(live_message)
|
15 |
await asyncio.sleep(interval)
|
16 |
|
17 |
def run_gradio():
|
18 |
-
"""
|
|
|
|
|
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 |
asyncio.run(periodic_update(live_block))
|
31 |
|
32 |
if __name__ == "__main__":
|
33 |
-
run_gradio()
|
|
|
1 |
import gradio as gr
|
2 |
import datetime
|
3 |
import asyncio
|
4 |
+
import ssl
|
5 |
+
|
6 |
+
# Disable SSL verification (only for development/testing)
|
7 |
+
ssl._create_default_https_context = ssl._create_unverified_context
|
8 |
|
9 |
def update_live_message():
|
10 |
+
"""
|
11 |
+
ํ์ฌ ์๊ฐ๊ณผ 'live' ๋ฉ์์ง๋ฅผ ๋ฐํํฉ๋๋ค.
|
12 |
+
"""
|
13 |
current_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
|
14 |
return f"{current_time} - live"
|
15 |
|
16 |
async def periodic_update(interface, interval=60):
|
17 |
+
"""
|
18 |
+
์ฃผ์ด์ง ์ธํฐํ์ด์ค์ 1๋ถ ๊ฐ๊ฒฉ์ผ๋ก ์
๋ฐ์ดํธ๋ฅผ ์คํํฉ๋๋ค.
|
19 |
+
"""
|
20 |
while True:
|
21 |
live_message = update_live_message()
|
22 |
interface.update(live_message)
|
23 |
await asyncio.sleep(interval)
|
24 |
|
25 |
def run_gradio():
|
26 |
+
"""
|
27 |
+
Gradio ์น ์ธํฐํ์ด์ค๋ฅผ ์ค์ ํ๊ณ ์คํํฉ๋๋ค.
|
28 |
+
"""
|
29 |
live_block = gr.Textbox(label="Live Output", value="Starting...", elem_id="live_output")
|
30 |
|
31 |
demo = gr.Blocks()
|
|
|
32 |
with demo:
|
33 |
gr.Markdown("## Live Server Output")
|
34 |
live_block
|
35 |
|
36 |
+
# SSL verification disabled for Hugging Face Space
|
37 |
+
demo.launch(
|
38 |
+
server_name="0.0.0.0",
|
39 |
+
server_port=7860,
|
40 |
+
inbrowser=True,
|
41 |
+
ssl_verify=False # Add this parameter
|
42 |
+
)
|
43 |
+
|
44 |
# ๋น๋๊ธฐ ์
๋ฐ์ดํธ ์์
์์
|
45 |
asyncio.run(periodic_update(live_block))
|
46 |
|
47 |
if __name__ == "__main__":
|
48 |
+
run_gradio()
|